Forum Replies Created
-
AuthorPosts
-
June 1, 2015 at 9:10 am in reply to: Help! How to change promotion headline's text color, and other issues- Fullframe #58691
Sakin
Keymaster@Steve:
1. To center the promotion headline, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS” box:#promotion-message .left { max-width: 100%; text-align: center; width: 100%; }2. To change the too left menu color, you can adjust the color code in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS” box:
.mobile-menu-anchor a.genericon-menu, .mobile-menu-anchor a.genericon-menu:hover { color: #404040; }3. Yes, it will all be center in mobile devices, check our demo http://catchthemes.com/demo/catch-responsive/
June 1, 2015 at 9:05 am in reply to: How to use different responsive.css in child theme without changing parent theme #58690Sakin
Keymaster@effess: You can add in as below:
@media screen and (max-width: 1152px) { #masthead .header-sidebar .widget ul.menu ul { top: 30px; } }Sakin
Keymaster@roderick: Oh you are trying to change the font size of Footer Area widget. So, you can adjust the font size in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
/* Footer Widget Font Size */ #supplementary .widget { font-size: 16px; } /* Footer Widget Title Font Size */ #supplementary .widget-title { font-size: 20px; }Sakin
Keymaster@LipoTonic: You are using Catch Flames free theme and trying to use Simple Catch Theme CSS. That is why it’s not working. For Catch Flames free theme, you need to add the following css in “Appearance => Theme Options => Custom CSS” box:
#sidebar-header-right .widget_search { display: none; }Sakin
Keymaster@Connie: Hum we don’t have any theme name designfolio. Looks like you are trying to get help for theme which we haven’t build in. So, in that case, you need to ask in that particular theme developer forum. Here I am giving you instructions for Full Frame Pro theme, as you have posted question in Full Frame Pro theme Support Forum.
Sakin
Keymaster@Connie: Once you are in Color Picker, if you know the color code, you can directly add in color code there, or you can first select the base color and let move the mouse to make it light or dark or combination. See this screenshot https://www.pinterest.com/pin/548594798336232550/
Sakin
Keymaster@Cattext: First, try this. Go to “Appearance => Theme Options => Homepage/Frontpage Settings” and then uncheck “Enable Latest Posts”. IF this doesn’t work then add in the following css in “Appearance => Theme Options => Custom CSS” box:
.home #content-sidebar-wrap { display: none; }Sakin
Keymaster@j17dascoli: You can use “2. Catch Kathmandu: Advertisement” widget and then add in your image URL there.
Sakin
KeymasterIf you want to hide page title, then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#main .type-page .entry-header { display: none; }Sakin
Keymaster@Vivien: Not sure want you want. Can you share screenshot of what you want and also add in your site URL so that I can check in details.
Sakin
Keymaster@fabger: There is no option that like in default. You might want to search for responsive table plugin at http://wordpress.org/plugins/ or google it.
Sakin
Keymaster@mvb:
1. Hum why you want “Content and Secondary Sidebar”. I don’t understand it. If you want to show your sidebar in the left and content in the right then you can use the layout “Primary Sidebar, Content”. You can see the list of layout options demo for Catch Base Pro at http://catchthemes.com/demo/catch-base/layout-options/2. Yes, if you have content less then then number of word count in “Appearance => Customize => Theme Options => Excerpt Options => Excerpt Length (words)”
So, we are adding Content Options in version 2.0 which will help you.
Sakin
Keymaster@stevan021: I am not sure if I understand you correctly. But if you want to add background color just in logo then you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#site-logo { background-color: #000; }May 31, 2015 at 1:09 am in reply to: Change position of 'read more' and how to add line breaks #58607Sakin
Keymaster@michaela2: Same goes, to you. You can go to “Appearance => Customize => Feature Content Options => Featured Content Type” and select “Show Full Content” in “Display Content” and then you can break content in your page using more tag
<!--more-->. Read more about more tag at http://devotepress.com/wordpress-writing-editing/how-to-split-content-using-the-more-tag-option/May 31, 2015 at 1:06 am in reply to: Change position of 'read more' and how to add line breaks #58606Sakin
Keymaster@klaarbenje: Oh you are talking about Featured Page Content. So, this will not take Layout Options as Archive Content Layout. Archive Content layout is only for the blog post.
Good News, we have just added in “Display Content” option in Featured Content Options. So, first update your Catch Responsive theme to latest version 1.5 and then go to “Appearance => Customize => Feature Content Options => Featured Content Type” and select “Show Full Content” in “Display Content”.
May 30, 2015 at 11:06 pm in reply to: Help! How to change promotion headline's text color, and other issues- Fullframe #58601Sakin
Keymaster@Steve: Which theme are you using it? Can you post in your site URL so that I can check in and send you css for this.
Sakin
Keymaster@stevan021:
1. For 5 products in line. Replace the following previous css:@media screen and (min-width: 769px) { .woocommerce ul.products li.product, .woocommerce-page ul.products li.product { margin-right: 2.5%; width: 18%; } }With the following css:
@media screen and (min-width: 769px) { .woocommerce ul.products li.product, .woocommerce-page ul.products li.product { margin-right: 1%; margin-left: 1%; width: 18%; } }2. To remove that from screenshot, add the following css:
.woocommerce-breadcrumb, .woocommerce-result-count, .woocommerce-ordering { display: none; }Sakin
Keymaster@Olivia: There is no such code. As WordPress only have option to add in Site Title and Tagline. If you want second text below tagline, then you need to build child theme and add in manually.
So, first build child theme. You can ready about child theme and download sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/ and then add the following code in your child theme
functions.phpfile. In the following code, you just need to replace the textSecond line text below taglinewith your own text./** * Site Logo, Title, Tagline and Second Tagline * */ function catchresponsive_site_branding() { $options = catchresponsive_get_theme_options(); //Checking Logo if ( '' != $options['logo'] && !$options['logo_disable'] ) { $catchresponsive_site_logo = ' <div id="site-logo"> <a href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" rel="home"> <img src="' . esc_url( $options['logo'] ) . '" alt="' . esc_attr( $options['logo_alt_text'] ). '"> </a> </div><!-- #site-logo -->'; } else { $catchresponsive_site_logo = ''; } if ( display_header_text() ){ // Show header text if display_header_text is checked $catchresponsive_header_text = ' <div id="site-header"> <h1 class="site-title"><a href="' . esc_url( home_url( '/' ) ) . '">' . get_bloginfo( 'name' ) . '</a></h1> <h2 class="site-description">' . get_bloginfo( 'description' ) . '</h2> <h2 class="site-description">Second line text below tagline</h2> </div><!-- #site-header -->'; } else { $catchresponsive_header_text = ''; } if ( '' != $options['logo'] && !$options['logo_disable'] ) { if( ! $options['move_title_tagline'] ) { $catchresponsive_site_branding = '<div id="site-branding" class="logo-left">'; $catchresponsive_site_branding .= $catchresponsive_site_logo; $catchresponsive_site_branding .= $catchresponsive_header_text; } else { $catchresponsive_site_branding = '<div id="site-branding" class="logo-right">'; $catchresponsive_site_branding .= $catchresponsive_header_text; $catchresponsive_site_branding .= $catchresponsive_site_logo; } } else { $catchresponsive_site_branding = '<div id="site-branding">'; $catchresponsive_site_branding .= $catchresponsive_header_text; } $catchresponsive_site_branding .= '</div><!-- #site-branding-->'; echo $catchresponsive_site_branding ; }May 29, 2015 at 10:28 pm in reply to: Change position of 'read more' and how to add line breaks #58571Sakin
Keymaster@klaarbenje:
1. If you want manual read more text by adding in more tag<!--more-->, then first you need to go to “Appearance => Customize => Theme Options => Layout Options” and in “Archive Content Layout”, you need to select “Show Full Content”.2. Sorry I don’t get it what you mean. As you haven’t posted in your site URL to see the contact. So, please post in your site URL and explain please.
-
AuthorPosts
