Forum Replies Created
-
AuthorPosts
-
October 14, 2023 at 1:20 am in reply to: How can I adjust the cropping of an image in the Home Page/Slider? #191088
Psink
KeymasterYou can add this CSS
#page-site-header {
padding: 300px 0;
text-align: center;
position: relative;
background-color: #333;
background-size: inherit;
background-position: top;
background-attachment: fixed;
height: 100vh;
background-color: #000;
background-repeat: no-repeat;
}October 12, 2023 at 11:22 pm in reply to: When i do “preview site” the blocks are all unformatted. #191078Psink
KeymasterSeems you have used the same license on all the sites. One license only works for one site
For more info https://themepalace.com/faq/#license
Psink
KeymasterRegarding the menu color, here’s the CSS that changes color and text color:
@media screen and (max-width: 1023px) {
.main-navigation ul.nav-menu > li > a {
color: #555;
}.main-navigation ul.nav-menu {
background-color: #FFD618;
}.main-navigation form.search-form input {
background-color: #FFD618;
color: #000;
}.main-navigation ul#primary-menu li.current-menu-item > a {
color: #12315d;
font-weight: 700;
}
}NOTE: You can change the color as per your requirement.
Again, for the footer links, you can add the CSS below:
.site-info span {
display: flex;
justify-content: center;
gap: 25px;
}@media screen and (min-width: 767px) {
.site-info.col-2 span {
width: 100%;
}
}NOTE: For spacing, you can change the gap value as per your requirement.
October 12, 2023 at 4:14 am in reply to: When i do “preview site” the blocks are all unformatted. #191062Psink
KeymasterSeems the issue is with the server, not with the theme. For that reason, we are unable to fix the issue of your site. So we would like you to contact your hosting provider to look into this issue. OR you can create a subdomain, install a fresh WordPress, and check if the same issue exists on a fresh site.
In case – the issue is not solved in the fresh site you can cancel the Photobrust Pro license and request for a refund
October 12, 2023 at 3:50 am in reply to: When i do “preview site” the blocks are all unformatted. #191059Psink
KeymasterSeems there is an issue with your server. You can contact your host regarding the current issue. If nothing works out you can kindly request for refund at https://themepalace.com/contact-us/
October 11, 2023 at 7:07 am in reply to: When i do “preview site” the blocks are all unformatted. #191046Psink
KeymasterThe login you provided currently has limitations. We cannot access the plugins and themes section.
Not sure, but I guess some third party plugin might be causing this issue. We’ve tested this theme locally on our site and everything works fine.
For quick test you can install Health Check plugin and troubleshoot your site by disabling all the plugins first. This will help you determine which plugin is exactly causing the problem.
Or you can provide us full access to the site so that we can troubleshoot it for you.
October 11, 2023 at 5:59 am in reply to: When i do “preview site” the blocks are all unformatted. #191043Psink
KeymasterI did not get any emails in my inbox. Could you please verify and resend it?
October 11, 2023 at 5:23 am in reply to: When i do “preview site” the blocks are all unformatted. #191041Psink
KeymasterSince your site is on maintainance mode, is it possible to provide us a temporary login for your site?
You can send the temporary login details at prashant.themepalace@gmail.com.
October 11, 2023 at 4:59 am in reply to: When i do “preview site” the blocks are all unformatted. #191039Psink
KeymasterHello Diogo,
It looks like the problem you are facing might be caused by the conflict of theme’s CSS with block editor. Can you please provide your site URL so that we can inspect the issue? Hopefully, we can provide additional CSS to solve this problem.
Psink
KeymasterYou can add this CSS in the Additional CSS
#notice-ticker{
min-width: 390px;
}and you can change the value of min-width as per your requirement
October 9, 2023 at 2:49 am in reply to: How can i re-arrange the sections of the website (Travel Master Pro) #191016Psink
KeymasterCurrently, you are using Travel Master Pro v1.0.3. Please update the theme to the latest version which is 1.3.0. The issue has been resolved in the latest version
October 9, 2023 at 2:02 am in reply to: How can i re-arrange the sections of the website (Travel Master Pro) #191014Psink
KeymasterThe video link you have sent is corrupted.
https://www.awesomescreenshot.com/image/43437265?key=d0cad3e6bee60d4a0852ce533e64eee1October 9, 2023 at 12:40 am in reply to: Restrict Next and Previous post links to current category #191012Psink
KeymasterFirst, you need to add WPCode plugin to added the PHP snippet.
And here is the code
remove_action( ‘magpaper_pro_action_post_pagination’, ‘magpaper_pro_post_pagination’, 10 );
add_action( ‘magpaper_pro_action_post_pagination’, ‘magpaper_pro_new_post_pagination’, 10 );
function magpaper_pro_new_post_pagination() {
the_post_navigation( array(
‘prev_text’ => magpaper_pro_get_svg( array( ‘icon’ => ‘up’ ) ) . ‘%title‘,
‘next_text’ => ‘%title‘ . magpaper_pro_get_svg( array( ‘icon’ => ‘up’ ) ),
‘in_same_term’ => true,
) );
}Please follow the screen record and add this code on your site
https://www.awesomescreenshot.com/video/21420290?key=fd90b6e39aaf0a2a72aa57c24060f507October 8, 2023 at 11:48 pm in reply to: How can i re-arrange the sections of the website (Travel Master Pro) #191011Psink
KeymasterCould you please share a reference screen record? Section sortable should work
https://www.awesomescreenshot.com/video/21419506?key=a22890f0f56ddcce96981fcafe1d9590It would be easy for us to understand the issue more detail and help you to fix this issue
Psink
KeymasterIs it possible to share your site URL? we will inspect and provide you a CSS to change the color
-
AuthorPosts