Forum Replies Created
-
AuthorPosts
-
Mahesh
Participant@flp2001: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
.home .entry-footer { display: none; }Regards,
MaheshJanuary 25, 2017 at 10:21 am in reply to: Error in my excerpt says \"→rarr\" after \"continue reading\" #107957Mahesh
Participant@seebliss: There has been a small issue in the theme and will be fixed in the next update which will be released soon. Thank you for your patience.
Regards,
MaheshJanuary 25, 2017 at 10:16 am in reply to: change font size of text widget in footer and hide tagged link in post #107956Mahesh
Participant@lucapizzonia: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
* use a different size font#footer-sidebar .widget-title { font-size: 30px; } #footer-sidebar .textwidget { font-size: 20px; }Note: Please adjust the font size as desired.
*hide tagged link after each post
.entry-meta .sep, .entry-meta .in-category, .entry-meta .in-tag { display: none; }Regards,
MaheshJanuary 25, 2017 at 10:05 am in reply to: Problem with Catch Evolution Pro auto-update to 3.4.1 #107954Mahesh
Participant@anthonyadinolfi: You cannot update Pro themes by just directly Update Now button like Free themes. You’ll need to first download the theme from https://catchthemes.com/my-account/ page. Then use Catch Updater plugin or Catch Updater module of Catch Web Tools plugin.
https://catchthemes.com/wp-plugins/catch-updater/
https://wordpress.org/plugins/catch-web-tools/
Please check the tutorial video in the link below:
https://www.youtube.com/watch?v=W95SuabDZi8Regards,
MaheshMahesh
Participant@pegasusoliverkyr-com: Just to let you know that the update has been released. Please update.
Regards,
MaheshMahesh
Participant@hidemyage: Can you clarify more. I don’t quite get you.
Regards,
MaheshJanuary 25, 2017 at 10:00 am in reply to: Image Gallery Carousel is not working with Lucida Pro | Premium WordPress Theme #107951Mahesh
Participant@haralanov: Go to Jetpack’s settings and make sure Carousel feature is enabled.
Regards,
MaheshMahesh
Participant@michaelking: I checked your site and its working fine on iOS too. May be some caching issue. Please try clearing the cache.
Regards,
MaheshJanuary 24, 2017 at 4:32 pm in reply to: Category label: change color or set image background #107891Mahesh
Participant@lucapizzonia: Please post in your site url.
Regards,
MaheshMahesh
Participant@craigbrowne: Add the following CSS:
.site-header.float-header { background-color: rgba(0, 103, 172, 0.9); } @media screen and (max-width: 1024px) { #masthead { background-color: rgb(0, 103, 172); } }Regards,
MaheshMahesh
Participant@audun: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
.main-navigation a { color: #f9a21f; }For Meny text, 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:
function rock_star_primary_menu() { ?> <button id="menu-toggle" class="menu-toggle"><?php _e( 'Meny', 'rock-star' ); ?></button> <div id="site-header-menu" class="site-header-menu"> <nav aria-label="<?php esc_html_e( 'Primary Menu', 'rock-star' ); ?>" role="navigation" class="main-navigation" id="site-navigation"> <div class="menu-main-menu-container"> <?php if ( has_nav_menu( 'primary' ) ) { $rock_star_primary_menu_args = array( 'theme_location' => 'primary', 'menu_class' => 'menu nav-menu', 'container' => false ); wp_nav_menu( $rock_star_primary_menu_args ); } else { wp_page_menu( array( 'menu_class' => 'menu nav-menu' ) ); } ?> </div><!--end menu-main-menu-container--> </nav><!--end main-navigation--> </div><!-- .site-header-menu --> <?php }Regards,
MaheshMahesh
Participant@mati: I checked your site, and only see a blank page. Let me know further.
Regards,
MaheshMahesh
Participant@novaglenn: Sorry for that, you’ll have an email by now.
Regards,
MaheshMahesh
Participant@markthack: Thanks, just check your site, and I found what was causing the issue. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Homepage/Frontpage Options, you have selected Uncategorized. And since there were no posts in Uncategorized category, it was displaying 404 error. Now I’ve selected all the categories and now the posts are showing correctly in New & Update page.
In the next update, you’ll have All Categories options, with which you won’t have to select all categories again for showing all categories in the post list.Regards,
MaheshMahesh
Participant@bhichi: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
#masthead { display: none; }Regards,
MaheshMahesh
ParticipantMahesh
Participant@craigbrowne: The final thing I need to get right is the color of the masthead. I need it to be transparent on the front page, then rgba(0,103,172,0.9)
This makes the your header logo and menu invisible since they are both white. Are you sure you want to do this?
And rgb(0,103,172) and rgba(0,103,172,0.9) won’t make any difference, do you want to make the header more transparent after scrolling?
Let me know further.Regards,
MaheshMahesh
Participant@caulon: Can you please clarify more. Please show this with your site url.
Regards,
MaheshMahesh
Participant@hellohillory: For this, you’ll need to create child theme. You can find more details on creating child theme HERE. Then add the following code in your child theme’s
functions.php.add_filter( 'get_the_archive_title', function ( $title ) { if( is_category() ) { $title = single_cat_title( '', false ); } return $title; });Regards,
MaheshMahesh
Participant@blantonlaura: There was a small bug in the theme. This issue will be fixed in the next update. For quick fix, go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
.site-header .site-branding { clip: unset; position: unset !important; }Regards,
Mahesh -
AuthorPosts
