Forum Replies Created
-
AuthorPosts
-
Mahesh
Participant@webeida: Have you modified the code or using the child theme? The HTML structure is different in you site than the default. I checked using your very logo and it worked fine, the menu is displaying under the logo. If you have modified theme or using child theme, try it with fresh untouched Simple Catch theme and let me know if the problem persists. If you are using any plugins, try deactivating those too. As you have compressed the site, it is difficult to check your theme version too.
Regards,
MaheshJuly 1, 2016 at 5:18 pm in reply to: Next and Previous page navigation links at the top and bottom of each page #94566Mahesh
Participant@smoothiechode: For this you’ll need to create a child theme. You can find more on creating child theme HERE. Then in you child theme folder create page.php file and copy the codes below into it.
<?php /** * The template for displaying all pages * * This is the template that displays all pages by default. * Please note that this is the WordPress construct of pages * and that other 'pages' on your WordPress site will use a * different template. * * @package Catch Themes * @subpackage Full Frame * @since Full Frame 1.0 */ get_header(); ?> <main id="main" class="site-main" role="main"> <?php while ( have_posts() ) : the_post(); ?> <?php fullframe_post_navigation(); ?> <?php get_template_part( 'content', 'page' ); ?> <?php fullframe_post_navigation(); ?> <?php /** * fullframe_comment_section hook * * @hooked fullframe_get_comment_section - 10 */ do_action( 'fullframe_comment_section' ); ?> <?php endwhile; // end of the loop. ?> </main><!-- #main --> <?php get_sidebar(); ?> <?php get_footer();This will put navigation links below and above the content for pages.
Note: If you want to use navigation only above or only below then remove the code as necessary.
Line 20 is for above navigation links.
Line 22 is for below navigation links.Hope this helps.
Regards,
MaheshMahesh
Participant@filip_1: What actually do you want to customize in the menu? You’ve mentioned that you want to customize the length of links, can you please show me with an image as an example.
Let me know further.Regards,
MaheshMahesh
Participant@wouwonline: Thank you for your appreciation. If you like my support and Catch Kathmandu theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-kathmandu?rate=5#postform
Have a nice day!
Regards,
MaheshMahesh
Participant@webeida: I checked your site and the logo is displaying above the menu as you wanted. Let me know if I am confused on this and not what you wanted.
And for full-width menu, you’ll need to customize the html structure as this theme is a boxed layout. I recommend you to hire a customizer or use other full-width themes like Adventurous, Full Frame etc.Regards,
MaheshMahesh
Participant@oleymedia: Please contact the Sales team for this. They will help you further.
https://catchthemes.com/contact-us/Regards,
MaheshMahesh
Participant@danceregistry: I checked your site and all 7 slider images are showing. Seems all is working fine.
Regards,
MaheshMahesh
Participant@danceregistry: Sorry, there has been a little bug in the theme. This will be fixed in the next update. We’ll be releasing it soon after testing.
Sorry for the inconvenience.Regards,
MaheshMahesh
Participant@oleymedia: After logging in, you can download it from https://catchthemes.com/my-account/ page.
Regards,
MaheshMahesh
Participant@soundaroundme: Glad to know you’ve resolved it yourself. Have a nice day.
Regards,
MaheshMahesh
Participant@bigoslesli: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options and make sure you have selected Excerpt/Blog Display in Full Content Display options.
Regards,
MaheshMahesh
Participant@flattsaholic: Glad to know you’ve figured out it yourself. Have a nice day.
Regards,
MaheshJuly 1, 2016 at 12:33 pm in reply to: No sidebar layout – grey colour between content and footer #94537Mahesh
Participant@anncalli: Have you put these images in the content area so as to display it as portfolio? I would be easy to trace out the issue if we could check in the live site.
Let me know further.Regards,
MaheshMahesh
ParticipantHi Jordan,
The feature you are seeking (No Sidebar – Full Width) is available in Adventurous Pro. I recommend you to upgrade to Pro. But if you want this in free version, you can do it with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
.container { width: 1160px; } #primary { width: 100%; }Regards,
MaheshMahesh
Participant@webeida: I checked the link you’ve mentioned above, but nothing shows up, just a blank page.
Regards,
MaheshMahesh
Participant@wouwonline: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
.site-footer a, #mainnav .current-menu-item > a, #mainnav .current-menu-ancestor > a { color: #ff00ff; }Note: You can change the color to your desired color by changing the color hex in the above code.
Let me know if any problem.Regards,
MaheshMahesh
Participant@wouwonline: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
body, p, .entry-title, .widget-title { font-family: courier; }Regards,
MaheshMahesh
Participant@wouwonline: Yes, this one is working. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
.entry-content td, .entry-content table { border: none; }Regards,
Mahesh -
AuthorPosts
