Forum Replies Created
-
AuthorPosts
-
PratikParticipant
Hi @Bandit,
Do not edit the core css files. We have given a feature Custom CSS for changing any custom CSS.
It would be better if you could have given your site link but I think following code will work.Goto Appearance=> Customize=> Theme Options=> Custom CSS and add following code:
#access { font-size: 20px; }
Then click on Save & Publish button.
You can increase or decrease 20px to have same effect on the display.
Let me know if this solves your issue or not. If it does not, please post in your site url.
December 26, 2015 at 8:30 am in reply to: changing catchresponsive_entry_meta in "single" view #81684PratikParticipantHi @Alexandre,
Yes, all the customization has to be made via Child Theme.To achieve what you want, you can follow the steps below:
1. You will need to create a child theme for Catch Responsive Pro. Its details can be found here. (Just download your respective Child Theme from Samples newr the bottom of the post)
2. Then you can past this code in your child theme’s functions.php/** * Prints HTML with meta information for the current post-date/time and author. * * @since Catch Responsive 1.0 */ function catchresponsive_entry_meta() { if( !is_single() ) { //Bail early if it is not a post page return; } echo '<p class="entry-meta">'; $time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time><time class="updated" datetime="%3$s">%4$s</time>'; } $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); printf( '<span class="posted-on">%1$s<a href="%2$s" rel="bookmark">%3$s</a></span>', sprintf( _x( '<span class="screen-reader-text">Posted on</span>', 'Used before publish date.', 'catch-responsive' ) ), esc_url( get_permalink() ), $time_string ); if ( is_singular() || is_multi_author() ) { printf( '<span class="byline"><span class="author vcard">%1$s<a class="url fn n" href="%2$s">%3$s</a></span></span>', sprintf( _x( '<span class="screen-reader-text">Author</span>', 'Used before post author name.', 'catch-responsive' ) ), esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_html( get_the_author() ) ); } if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) { echo '<span class="comments-link">'; comments_popup_link( esc_html__( 'Leave a comment', 'catch-responsive' ), esc_html__( '1 Comment', 'catch-responsive' ), esc_html__( '% Comments', 'catch-responsive' ) ); echo '</span>'; } edit_post_link( esc_html__( 'Edit', 'catch-responsive' ), '<span class="edit-link">', '</span>' ); echo '</p><!-- .entry-meta -->'; }
The code on the top of function is the addition that does the work you desire. Let me know if this works out or not.
PratikParticipantHi @emree025,
This option is not available in free version but is available in Catch Box Pro version.If you want to do it in a free version, you need to do a bit of customization via Child theme. Follow following instructions:
1. You will need to create a child theme for Catch Box. Its details can be found here
2. If you go through theme file catch-box-pro/inc/catchbox-menus.php file, you can find functions named catchbox_mobile_header_nav_anchor() and catchbox_mobile_footer_nav_anchor().
3. You can copy and paste these functions in your child theme’s functions.php and make the modifications in this the lines 218, 232 and 259 (with reference to the original file). The three lines are for Primary Menu, Secondary Menu and Footer Menu respectively.This will work if you do it properly. Hope this helps. Let me know how things work out.
PratikParticipantHi @adunning,
Sorry for late reply. You can create a different post for your issue with a ref link to this post.About the issue, Catch IDs will work fine till WordPress version 4.4 on all themes.
PratikParticipantHi @Julie,
Thanks for using Catch Everest Pro. The mountain image you are referring to must be from the slider. So to change that, you can follow the instructions here and look at Featured Slider section (Just do a Ctrl + F search with Featured Slider on that page). The instructions should be clear but if you still have problems, please let me know and I will assist you further.
PratikParticipantHi @Kieth,
I think this theme is Catch Box Pro rather than Catch Base Pro. However, since the video is added via iframe, the Custom CSS will not work on it. CSS will not work on cross domain.
PratikParticipantHi @Keith,
It looks like you are using Catch Box Pro Theme but posted it in Catch Base Pro Forum. No worries though. I am leaving this one for @Sakin. He will answer this as it looks like it is a bit tough issue.PratikParticipantHi @whatmoviethisweek,
You have added some Custom CSS in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box. If you remove those, i.e. following code, then this error will go away.
#secondary { width: 22%; } #primary { width: 100%; } #content { width: 68%; }
Let me know if this solves your issue or not.
December 19, 2015 at 8:12 pm in reply to: problem with featured content after updating to 4.4 virsion #81395PratikParticipanthi @adamsh,
The option is working fine in our servers. Can you change other options and let me know if they are being changed? Also, please post in your site url so I can check it.
PratikParticipantHi @Bram,
Assuming that you want the search icon same color as other menu items, use following code in “Appearance=> Theme Options=> Custom CSS”:/* Change Search Button Color */ #header-search { color: #fff; } /* Change Search Button Hover Color */ #header-search:hover { color: #5d91bf; } /* Change Header Right Border Top */ #header-right .header-search-wrap { border-top: 3px solid #5d91bf; }
You can change the hex color values to any other color it you like.
Let me know if this helps.
PratikParticipantHi @marga,
For 1 and 2 you have solved it yourself so that is great.For third, you will need to follow these steps in “Appearance=> Theme Options=> Custom CSS”
* First, Remove following code:#site-logo, #hgroup.with-logo { display: inline-block; float: left;; }
* Then, add following code:
.logo-wrap { display: block; text-align: center; width: 100%; } #site-logo { display: block; float: none; }
Thats it, and the logo should be center.
Let me know how it works out.
PratikParticipanthi @Matthias,
I will ping @Sakin and let him know about the situation.Regards,
PratikPratikParticipantHi @Cokalejandro,
You will find the text in comments.php line 60.Copy comments.php to your child theme folder and then edit that line.
PratikParticipanthi @Matthias,
I am a bit confused as you have posted this on Catch Adaptive Pro forum. Also, you have mentioned that you upgraded to version 3.4, but the latest of this theme is version 3.3.
Full Frame Pro looks like the theme you have used. I tried changing the language from WordPress Dashboard=> General => Site Language to Deutsch, and went to customizer and it was working fine.
Let me know if I need to follow any other steps.
The customization page links do not work for me as only logged in users can view that page.
Also, can you try and change the language of German Site to English and see if the problem persists.
Please let me know how it goes and I will assist you further.
PratikParticipantHi @Theodore,
Once you add the menu, it will go to the bottom of the current list of menus and the current box will revert to original state. Can you please try adding it and then, looking at the bottom of the menu list on the right. Then you can drag that option anywhere you like.Let me know if it works out or not.
PratikParticipanthi @NickBallDesign,
Instead of the given add_action() code, use the following one:
add_action( 'catchbase_header', 'catchbase_extra_header_sidebar', 55);
This will add it to the left of social icon.
PratikParticipantHi @Theodore,
This question is pretty much related to the one in http://catchthemes.com/support-forum/topic/primary-menu-dummy-page/
Instead of adding “#” as URL add your PDF file (in media) link and drag that item as sub menu.
Let me know if this works or not.
-
AuthorPosts