Forum Replies Created

Viewing 20 posts - 3,561 through 3,580 (of 14,509 total)
  • Author
    Posts
  • 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/

    Sakin
    Keymaster

    @effess: You can add in as below:

    @media screen and (max-width: 1152px) {
    	#masthead .header-sidebar .widget ul.menu ul {
    		top: 30px;
    	}
    }
    in reply to: Menu text size modification #58637
    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; }
    in reply to: Remove search in header? #58636
    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; }

    in reply to: Footer background color #58635
    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.

    in reply to: Change accent color #58634
    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/

    in reply to: colored area/line on homepage #58617
    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; }

    in reply to: Add images to sidebar #58616
    Sakin
    Keymaster

    @j17dascoli: You can use “2. Catch Kathmandu: Advertisement” widget and then add in your image URL there.

    in reply to: page title display=none? #58615
    Sakin
    Keymaster

    If 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; }

    in reply to: Logo/widgets in Header #58614
    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.

    in reply to: Insert table button in the toolbar #58613
    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.

    in reply to: Page: layout options #58609
    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.

    in reply to: General help with some stuff #58608
    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;
    }
    Sakin
    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/

    Sakin
    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”.

    Sakin
    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.

    in reply to: General help with some stuff #58574
    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; }

    in reply to: Site Logo hyperlink #58573
    Sakin
    Keymaster

    @Phil: No you can skip cropping or you can just add in your image URL.

    in reply to: Adding second line to the tag line #58572
    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.php file. In the following code, you just need to replace the text Second line text below tagline with 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 ;	
    }
    Sakin
    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.

Viewing 20 posts - 3,561 through 3,580 (of 14,509 total)