Forum Replies Created
-
AuthorPosts
-
Mahesh
ParticipantHi Pia,
Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
.site-content {
width: 100%;
}Note: Default width for this is 1100px.
Regards,
MaheshMahesh
ParticipantHi OliverJames,
The feature you are interested is already built-in in Pro version, so I recommend you to upgrade to Pro version.
But if you want to change the header text in free version instead, follow these steps.
1. Create child theme, you can find more details on creating child theme HERE.
2. In child theme’s function.php add the following code:function clean_journal_header_top() { if ( '' == ( $clean_journal_social_icons = clean_journal_get_social_icons() ) && !has_nav_menu( 'header-top' ) ) { ?> <div id="header-top" class="header-top-bar"> <div class="wrapper"> <div class="header-top-left full-width"> <section id="widget-default-text" class="widget widget_text header_top_widget_area"> <div class="widget-wrap"> <div class="textwidget"> <p><?php _e( 'Sample Text', 'clean-journal' ); ?></p> </div> </div><!-- .widget-wrap --> </section><!-- #widget-default-text --> </div><!-- .header-top-left --> </div><!-- .wrapper --> </div><!-- #header-top --> <?php } else { if ( '' != ( $clean_journal_social_icons = clean_journal_get_social_icons() ) && has_nav_menu( 'header-top' ) ) { $classes = 'normal-width'; } else { $classes = 'full-width'; } ?> <div id="header-top" class="header-top-bar"> <div class="wrapper"> <?php if ( has_nav_menu( 'header-top' ) ) { ?> <div class="header-top-left <?php echo $classes; ?>"> <?php clean_journal_header_top_menu(); ?> </div> <?php } ?> <?php if ( '' != ( $clean_journal_social_icons = clean_journal_get_social_icons() ) ) { ?> <div class="header-top-right <?php echo $classes; ?>"> <section class="widget widget_clean_journal_social_icons" id="header-right-social-icons"> <div class="widget-wrap"> <?php echo $clean_journal_social_icons; ?> </div><!-- .widget-wrap --> </section><!-- #header-right-social-icons --> </div><!-- .header-top-right --> <?php } ?> </div><!-- .wrapper --> </div><!-- #header-top --> <?php } }
Note: Please replace “Sample Text” in the above code with your desired text.
Regards,
MaheshJanuary 11, 2016 at 4:47 pm in reply to: Header image not centred or full-width – Catch Everest FREE Theme #82668Mahesh
ParticipantHi @adunning,
Finally understood your problem.
Please add the following CSS in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box:#hgroup-wrap { padding: 0; } #site-logo { padding-top: 0; }
Let me know if this solves your issue.
Regards,
MaheshMahesh
ParticipantHi @jascmeen,
Thank you for using Full Frame Pro.
Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:#feature-slider .cycle-prev, #feature-slider .cycle-next { display: none; }
Regards,
MaheshJanuary 11, 2016 at 11:59 am in reply to: the site title – always content url for different languages #82634Mahesh
ParticipantHi @radeko,
The theme is translation ready. And the translation is done with the help of plugins such as WPML, Qtranlate etc. The site url for each language may vary according to the plugin used. This is beyond the theme scope, I suggest you to contact the Plugin support.
Regards,
MaheshMahesh
ParticipantHi @marcodimi,
This is not a theme issue, I think you have some redirection problem, because which ever month you click in the archive the page is always redirecting to the home page. i.e.
If you see the link for the month of December, you’ll see the url to be “http://marcodimizio.com/2015/12/” but page loads with url “http://marcodimizio.com”.This is because of the WordPress SEO plugin.
To fix this, go to “Dashboard => SEO=> Title & Metas=> Archives” then in “Duplicate content prevention” section uncheck “Disable the date-based archives” option and click “Save Changes”Regards,
MaheshMahesh
ParticipantHi @Lena,
Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS:
#header-menu { border-bottom: 2px solid #ccc; }
Let me know if this fixes your issue, if not please post in your site url.
Regards,
MaheshMahesh
ParticipantHi @[email protected],
For changing footer text color, add the following CSS in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box.
#site-generator { color: #6b3089; }
For logo in the footer, you have to create a child theme, you can find detail about creating a child theme HERE. Then in child theme’s function.php, add the following codes.
function catchresponsive_child_footer_content() { //catchresponsive_flush_transients(); if ( ( !$catchresponsive_footer_content = get_transient( 'catchresponsive_footer_content' ) ) ) { echo '<!-- refreshing cache -->'; // get the data value from theme options $options = catchresponsive_get_theme_options(); $defaults = catchresponsive_get_default_theme_options(); $search = array( '[the-year]', '[site-link]' ); $replace = array( date( 'Y' ), '<a href="'. esc_url( home_url( '/' ) ) .'">'. esc_attr( get_bloginfo( 'name', 'display' ) ) . '</a>' ); $options['footer_content'] = str_replace( $search, $replace, $options['footer_content'] ); $footer_content = $options['footer_content']; if ( '' != $footer_content ) { $catchresponsive_footer_content .= ' <div id="site-generator"> <div class="wrapper"> <div id="footer-content" class="copyright">' . $footer_content . ' <img class="float-right" src="' . esc_url( 'http://placehold.it/20x20' ) . '" /> </div> </div><!-- .wrapper --> </div><!-- #site-generator -->'; set_transient( 'catchresponsive_footer_content', $catchresponsive_footer_content, 86940 ); } } echo $catchresponsive_footer_content; } add_action( 'init' , 'catchresponsive_child_modify_footer' , 15 ); function catchresponsive_child_modify_footer() { remove_action( 'catchresponsive_footer', 'catchresponsive_footer_content', 100 ); add_action( 'catchresponsive_footer', 'catchresponsive_child_footer_content', 100); }
Note: Please replace “http://placehold.it/20×20” in img src in the above code with your desired logo url.
Then add the following CSS in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box.
.float-right { float: right; }
Regards,
MaheshJanuary 11, 2016 at 9:58 am in reply to: Creating a blog page with all posts listed with thumbnails #82629Mahesh
ParticipantHi @Marijn,
Thank you for your appreciation.
Regards,
MaheshJanuary 11, 2016 at 9:57 am in reply to: Remove borders around the content boxes and widgets and narrow sidebar #82628Mahesh
ParticipantHi @Lucia,
Thank you for your appreciation.
We’re gradually going to remove the Theme Options and use Customizer instead. But all the features and functionality will be the same. It is faster, simpler and more user friendly, and all customization can be done with live preview. It will be available in next version update. Hope you’ll find it nice too.Regards,
MaheshMahesh
ParticipantHi @FOEC,
It is the id of the menu item, you can find it out by right clicking the page and select inspect element or with a firebug.
//For your english site
#secondary-menu ul.menu #menu-item-1453 > a { color: #fff; background-color: #0000ff; }
//For your french site
#secondary-menu ul.menu #menu-item-1710 > a { color: #fff; background-color: #0000ff; }
January 11, 2016 at 9:39 am in reply to: Header image not centred or full-width – Catch Everest FREE Theme #82626Mahesh
ParticipantHi @adunning,
You mean the logo, the one in the top? I’ve just check your site and the image is displaying fine and is in full width, I don’t see any white borders.
Please check it and let me know if any problems.
Regards,
MaheshMahesh
ParticipantHi @marcodimi,
The code you’ve put in the footer is fine. Please go to “Dashboard=> Appearance=> Theme Options=> WebMaster Tools=> Header and Footer Codes=> Code to display on Footer” box and make sure the following code is there, if not then paste it there.
<script type=”text/javascript”>(function (w,d) {var loader = function () {var s = d.createElement(“script”), tag = d.getElementsByTagName(“script”)[0]; s.src = “//cdn.iubenda.com/iubenda.js”; tag.parentNode.insertBefore(s,tag);}; if(w.addEventListener){w.addEventListener(“load”, loader, false);}else if(w.attachEvent){w.attachEvent(“onload”, loader);}else{w.onload = loader;}})(window, document);</script>
Go to “Dashboard=> Appearance=> Theme Options=> WebMaster Tools=> Header and Footer Codes=> Code to display on Header” box and remove all codes from there.
Then click “Save”.Let me know if this helps.
Regards,
MaheshMahesh
ParticipantHi @marcodimi,
Please share the script and html codes provided to you for the “Privacy Policy”.
Regards,
MaheshMahesh
ParticipantMahesh
ParticipantHi @marcodimi,
I think you’ve some unclosed html tags in the footer code, please replace your footer code with the codes below:
<div class="copyright">Autore del Blog: <a href="http://marcodimizio.com/" title="Marco Di Mizio"><span>Marco Di Mizio</span></a></div> <div class="powered"></div> <a href="//www.iubenda.com/privacy-policy/463315" class="iubenda-white iubenda-embed" title="Privacy Policy">Privacy Policy</a>
Currently in your site, I am seeing 3 “Privacy Policy” buttons, one in “Footer Widget”, one in “Footer” and one in the “Bottom-Right Corner”. The above code is for the one in the “Footer”. It will place the “Privacy Policy” button just below “Autore del Blog: Marco Di Mizio” aligning left.
Let me know if this solves your issue.
Regards,
MaheshMahesh
ParticipantHi @venumurki,
1. For your first issue i.e. combine featured content and latest-posts together into one section, this is beyond the theme scope, you have to hire a customizer.
2. The second one, hiding Posted On in latest post, create a child theme ( You can find the details on how to create a child theme HERE ). Then in child theme’s
function.php
add the following codes. This will hide the Posted On from post in home page only.if ( ! function_exists( 'adventurous_header_meta' ) ) : function adventurous_header_meta() { $date = sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a>', esc_url( get_permalink() ), esc_attr( get_the_time() ), esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ) ); $author = sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_attr( sprintf( __( 'View all posts by %s', 'adventurous' ), get_the_author() ) ), get_the_author() ); // Translators: 1 is category, 2 is tag, 3 is the date and 4 is the author's name. // if ( is_home() && ! is_paged() ) { $utility_text = __( '<span class="on-date">%1$s</span><span class="by-author"> by %2$s</span>', 'adventurous' ); } else{ $utility_text = __( '<span class="on-date">Posted on %1$s</span><span class="by-author"> by %2$s</span>', 'adventurous' ); } printf( $utility_text, $date, $author ); } endif;
3. For displaying search box instead of magnifying glass, please add the following CSS in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box:
Note: This will only place search box in desktop view as it may cause design issue in responsive design. So the mobile view will be same as before.@media screen and (min-width: 981px){ #header-right .header-search-wrap { display: block; position: static; padding: 0; border: none; opacity: 1 !important; } #header-search { display: none; } #header-right #header-search-widget{ width: 272px; } }
Regards,
MaheshMahesh
ParticipantHi @Joerg,
Thank you for using Catch Adaptive Pro.
For changing footer content, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Footer Editor Options” and change the content in ”
Footer Left Content” for text in footer left, and “Footer Right Content” for text in footer right respectively. Then click “Save & Publish” button.Regards,
MaheshJanuary 8, 2016 at 10:35 am in reply to: Changing text color & font – Catch Everest FREE Theme #82423Mahesh
ParticipantHi @adunning,
The feature is already built-in in the Catch Everest Pro version except the primary menu font, so I would recommend you to upgrade to Catch Everest Pro. But if you prefer to have it in the Catch Everest Free version, go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.
1. To change the text color in the sidebar, the footer, the primary menu and the featured content titles/* Primary Menu Color */ #header-menu ul.menu a { color: #00ff00; } /* Featured Content Title Color */ #featured-post .entry-header .entry-title a { color: #ff0000; } /* Sidebar Link Color */ .widget-area .widget a, .widget-area .widget a:hover{ color: #0000ff; } /* Footer Color */ #site-generator { color: #0000ff; }
2. to change the font in the featured content titles and primary menu
/* If you use fonts which are not CSS built-in fonts, you have to import it, here I have import Roboto Font from google to use it in Featured Content Title */ @import url("http://roboto-webfont.googlecode.com/svn/trunk/roboto.all.css"); /* Primary Menu Font */ #header-menu ul.menu a { /* Please replace the font family with your desire */ font-family: Helvetica, sans-serif; } /* Featured Content Title Font */ #featured-post .entry-header .entry-title a { /* Please replace the font family with your desire */ font-family: 'Roboto', sans-serif; }
Let me know if any issue.
Regards,
MaheshMahesh
Participant -
AuthorPosts