Forum Replies Created
-
AuthorPosts
-
Mahesh
Participant@rawikltd: Its kinda strange its not showing on your site. But working fine on our server. We’ll need to check on your server.
Regards,
MaheshMahesh
Participant@mark-argentino: Glad to know everything is working fine.
Regards,
MaheshMahesh
Participant@artisanwebsites: Sorry for that, and thank you, the instruction has been updated. You can use plugin to control widgets visibility or use Custom CSS. Please post in your site url.
Regards,
MaheshMahesh
Participant@legendsofamerica: For different sidebars, you can use plugins to control widgets visibility as per the page, so that you can show or hide it as per your requirement.
Regards,
MaheshMahesh
Participant@janetmmorris: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
.single.single-post #header-featured-image { display: none; } .single.single-post #masthead { background-color: #000000; } .single.single-post #content { margin-top: 78px; }
Let me know further. If this didn’t work, we’ll need to check on your site.
Regards,
MaheshMahesh
Participant@janetmmorris: Is the issue still persisting?
Regards,
MaheshMahesh
Participant@rawikltd: Please make sure you have set featured images on the posts.
Regards,
MaheshMahesh
Participant@mark-argentino: The menu seems to be displaying and working fine on your site. However, I cannot find the extra text with the link. How have you managed to have it previously. For the social icons color, go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
.social-profile ul li.facebook a { background-position: 0 -44px; } .social-profile ul li.twitter a { background-position: -44px -44px; } .social-profile ul li.google-plus a { background-position: -528px -44px; } .social-profile ul li.linkedin a { background-position: -176px -44px; } .social-profile ul li.wordpress a { background-position: -572px -44px; } .social-profile ul li.rss a { background-position: -88px -44px; } .social-profile ul li.email a { background-position: -837px -44px; }
Regards,
MaheshMahesh
Participant@rawikltd: Please try disabling the plugins and try if that fixes the issue.
Regards,
MaheshMahesh
Participant@janetmmorris: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options and select Disabled in Single Page/Post Image Layout option.
Regards,
MaheshMay 25, 2017 at 12:59 am in reply to: using Slider in Clean Journal increases divider where slider dots are in mobile #116296Mahesh
Participant@mmarvel54: Do you mean to hide slider container and the dots in mobile device? If yes, go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
@media screen and (max-width: 767px) { #feature-slider .entry-container, #feature-slider .cycle-pager { display: none; } }
Regards,
MaheshMahesh
Participant@amburmj: Now there is no dummy data for importing. You’ll need to put it manually.
For similar display as demo:
1. Demo slider: Go to Dashboard=> Appearance=> Customize=> Featured Slider and select Demo slider in Slider Type option.
2. Tours Widget: Go to Dashboard=> Appearance=> Widgets, add Tours widget into Before Content widget area. Follow along, fill up the data.
3. Videos Embeds Widget: Go to Dashboard=> Appearance=> Widgets, add Video Embeds widget into Before Content widget area. Follow along, fill up the data.
4. About Widget: Go to Dashboard=> Appearance=> Widgets, add About widget into After Content widget area. Follow along, fill up the data.
5. Instagram Widget: Go to Dashboard=> Appearance=> Widgets, add Instagram widget into After Content widget area. Follow along, fill up the data.Hope this helps.
Regards,
MaheshMahesh
Participant@maciejrzeszutko: Oh yes :). Well, there is a small bug in the theme, this will be fixed in the next update. We’ll let you know as soon as the update is released.
Regards,
MaheshMahesh
Participant@legendsofamerica: This is a boxed theme and max-width is 1200px. If you like to have full-width, I recommend you to use full-width themes.
Hiding sidebar in mobile devices is possible with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:@media screen and (max-width: 767px) { .sidebar-primary { display: none; } }
Regards,
MaheshMahesh
Participant@artisanwebsites: Sorry, the theme does not support that feature. There was some mistake in theme instructions which will be corrected shortly. Hope you understand. In demo, the widgets Tours, Videos etc are put in Before Content widget area and About in After Content widget area.
Regards,
MaheshMahesh
Participant@dan_4652: If you have any plugins installed, try disabling the plugins and check if the resolves the issue. Let me know further. Please post in your site url.
Regards,
MaheshMahesh
Participant@jmbtravel: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
#featured-post .featured-homepage-image {
display: inline-block;
}Regards,
MaheshMahesh
Participant@dosk: There has been a small bug in the theme. This will be fixed in the next update. We’ll let you know as soon as the update is released.
Regards,
MaheshMahesh
Participant@mohanghabo: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s
functions.php
, add the following codes:add_action( 'pre_get_posts', 'adventurous_child_ignore_sticky' ); function adventurous_child_ignore_sticky( $query ) { if ($query->is_main_query() && $query->is_home()) { $query->set( 'ignore_sticky_posts', 1 ); } }
Regards,
Mahesh -
AuthorPosts