Forum Replies Created
-
AuthorPosts
-
Mahesh
ParticipantMahesh
Participant@rodeboy: Glad to know you’ve managed to resolve your issues. No you can’t have different message in the box on each slider.
Can you please clarify more on displaying the text on the home page slider.Regards,
MaheshMahesh
Participant@mehes: You’ve changed the color to white and if you want to remove the black area below, add the following CSS:
.home #featured-content { display: none; }I have checked you site’s other pages, all have white background, seems you’ve fixed it. Let me know if any problem.
Regards,
MaheshMahesh
Participant@e-logan: Please use smaller sized image and choose skip cropping option while selecting the image. Hope it helps.
Regards,
MaheshMahesh
Participant@mjadkowskigmail-com: We are responding to all the tickets sent to us. We’ve inform the Premium Support team and they have responded you with an email please check. Did you receive the email?
Sidebar menu issue: Yes, this can be done. As you’ve mentioned you already have a sidebar set up on one page. I assume you’ve put it in the Sidebar Widget Area. Please set up new on on Optional Sidebar # Widget areas too then. When adding a new page, scroll down to be bottom, you’ll find Chicago Options. Click on Select Sidebar tab. And choose one of the option. On choosing, the sidebar menu of selected sidebar will be displayed. Hope this helps.
Sorry, we don’t have that but what you can do is, go to Dashboard=> Appearance=> Customize=> Featured Slider=> Featured Slider Options and select Homepage/Frontpage on Enable Slider on option to check the demo. Let me know further if you need any help.
Regards,
MaheshMahesh
Participant@mephjoe: Are you using any plugins? Is yes, please try disabling it and check again. I checked same on our sever and all is working fine. Please check the demo.
https://catchthemes.com/demo/catch-everest/Regards,
MaheshNovember 6, 2016 at 9:31 am in reply to: Lucida pro: switch position between date and site-description #102892Mahesh
Participant@vagabundo: Replace the following lines
<div class="wrapper"> <?php if ( '' == $options['disable_date'] ) { lucida_date(); } lucida_header_top_menu(); ?> </div><!-- .wrapper -->with:
<div class="wrapper"> <?php echo '<h2 class="site-description">' . get_bloginfo( 'description' ) . '</h2>'; lucida_header_top_menu(); ?> </div><!-- .wrapper -->Hope this is what you mean.
Regards,
MaheshMahesh
Participant@testrup: Please go to Dashboard=> Appearance=> Widgets and add CT: Social Icons to the widget area you desire.
Regards,
MaheshMahesh
Participant@jphilipsen: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
html, body { height: 100%; } #page, .site-inner { position: relative; min-height: 100%; height: 100%; } #colophon { position: absolute; bottom: 0; width: 100%; }Regards,
MaheshMahesh
Participant@mayane72gmail-com: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
.main-navigation .current-menu-item > a, .main-navigation .current-menu-ancestor > a, .main-navigation li:hover > a, .main-navigation li.focus > a { color: #fff000; }Regards,
MaheshMahesh
Participant@ejzohn: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
.sidebar-before-content { margin-top: 31px; padding: 20px 0; }Regards,
MaheshMahesh
Participant@phillycontemporary: I checked your site on Chrome browser and its working fine, may be cache problem.
Regards,
MaheshMahesh
Participant@rodeboy: I just checked your theme:
1. The recommended image for slider is 1920 x 1080 and its seems to be working fine. I guess you’ve managed to display the social icons on the slider too.
2. Changing text color, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:/* Site title and description color */ #site-details .site-title a, #site-details .site-description { color: #00ffff; } /* Main slider title and text color */ .main-slider .entry-title, .main-slider .entry-title a, .main-slider .entry-summary { color: #00ffff; }3. Change links from an underline to a different color for the text
a { color: #00ffff; }Note: Please use your desired color.
Regards,
MaheshMahesh
Participant@mjadkowskigmail-com:
Hi MarkHow can I help you? What seems to be the problem? I checked your profile on the forum, and this is the only post you have in here.
Let me know further.Regards,
MaheshMahesh
Participant@mehes: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
#content { background-color: #ff00ff; } .panel-widget-style, .panel-row-style { background: none !important; border: none !important; }Note: Change the color as you desire.
And you have used inline CSS for background color, please remove it.Regards,
MaheshNovember 4, 2016 at 9:55 am in reply to: Is it possible to create a post page and put the recent posts on the homepage? #102826Mahesh
Participant@valeska: 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, create a new-file for page template, and add the following code:
<?php /** * Template Name: My page * */ get_header(); ?> <main id="main" class="site-main" role="main"> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', 'page' ); ?> <?php /** * fullframe_comment_section hook * * @hooked fullframe_get_comment_section - 10 */ do_action( 'fullframe_comment_section' ); ?> <?php endwhile; // end of the loop. ?> <?php // Display blog posts on any page $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(); $wp_query->query('&paged='.$paged); while ($wp_query->have_posts()) : $wp_query->the_post(); ?> <?php /* Include the Post-Format-specific template for the content. * If you want to override this in a child theme then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> <?php if ($paged > 1) { ?> <nav id="nav-below" role="navigation"> <h3 class="screen-reader-text">Post navigation</h3> <div class="nav-previous"><?php next_posts_link('← Older Posts'); ?></div> <div class="nav-next"><?php previous_posts_link('Newer Posts →'); ?></div> </nav> <?php } else { ?> <nav id="nav-below" role="navigation"> <h3 class="screen-reader-text">Post navigation</h3> <div class="nav-previous"><?php next_posts_link('← Older Posts'); ?></div> </nav> <?php } ?> <?php wp_reset_postdata(); ?> </main><!-- #main --> <?php get_sidebar(); ?> <?php get_footer(); ?>Then add a new page and select this custom template, then it will display the page content along with the recent posts.
Note: Please make sure you have selected the very page as the static front page.
Regards,
MaheshMahesh
Participant@ejzohn: I checked your site, you’ve place the breadcrumb widget on the sidebar, not in before content. Where actually do you want to have it? Let me know further, so that I help you.
Regards,
Mahesh -
AuthorPosts
