Forum Replies Created

Viewing 20 posts - 9,701 through 9,720 (of 14,494 total)
  • Author
    Posts
  • in reply to: Social icons in site-info #17282
    Sakin
    Keymaster

    @GinaL: Look at the code I gave you. I haven’t told you to change anything in custom header. Just build child theme and in your child theme functions.php file you need to add the following code.

    if ( function_exists( 'catchwebtools_get_social_icons' ) ) :
    	add_action( 'catcheverest_site_generator', 'catcheverest_child_social', 5 );
    endif;
    
    function catcheverest_child_social() {
    	echo catchwebtools_get_social_icons();	
    }
    in reply to: featured post slider doesn't show on homepage #17280
    Sakin
    Keymaster

    @Stefing: Yes you can active default theme file twenty thirteen and then delete Catch Everest and then reinstall it.

    in reply to: Social icons in site-info #17279
    Sakin
    Keymaster

    @GinaL: Yes in your child theme functions.php file

    in reply to: featured post slider doesn't show on homepage #17278
    Sakin
    Keymaster

    @rawb_in: For Catch Everest Free theme footer widgets, you need to build child theme and just copy footer.php from Catch Everest theme to your child theme and the replace the code
    get_sidebar( 'footer' );
    with the following:
    if ( is_front_page() || is_home() ) : get_sidebar( 'footer' ); endif;

    in reply to: Remove footer area space #17276
    Sakin
    Keymaster

    @@Lorena Poling: To remove the box from those, image you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #featured-post img.wp-post-image { box-shadow: none; }

    Then about the gap, you are using 3 columns where as in your reference site, it’s 4 columns. So, the gap cannot be same.

    in reply to: Social icons in site-info #17274
    Sakin
    Keymaster

    @GinaL: So, you are using Catch Web Tools Plugin and Child theme of Catch Everest Free Theme. Then you can add the following code in your child theme functions.php file are as below:

    if ( function_exists( 'catchwebtools_get_social_icons' ) ) :
    	add_action( 'catcheverest_site_generator', 'catcheverest_child_social', 5 );
    endif;
    
    function catcheverest_child_social() {
    	echo catchwebtools_get_social_icons();	
    }
    in reply to: Header Sidebars #17273
    Sakin
    Keymaster

    @Sarah: That is why I gave you the css and the instruction. You need to follow both as this is bit complex. If you have difficulty adding it then use hire customizer.

    in reply to: Hide menu bar link on mobile? #17272
    Sakin
    Keymaster

    @jpbertram: I don’t think CSS can work in it. As there is different styled menu in mobile devices. Try hiring customizer at http://catchthemes.com/hire-customizer/

    in reply to: Homepage Featured content options #17270
    Sakin
    Keymaster

    @cpuss: For detail customization, please Hire Customizer http://catchthemes.com/hire-customizer/

    If need to manually add custom css for each widgets. So, it can be as below:

    #header-right .widget.widget_catcheverest_social_widget {
    	float: left; 
    }
    #header-right .widget.widget_polylang, 
    #header-right .widget.widget_search { 
    	clear: none; float: left; 
    }
    in reply to: Theme Options Menu not working #17268
    Sakin
    Keymaster

    @aroma-bobman: What is different in this new site? Maybe there in conflicting plugin. Can you try disabling plugin and check in.

    If that is still not working then I need to check in your site admin and I will email you where you can send me the access.

    in reply to: Theme Options Menu not working #17266
    Sakin
    Keymaster

    @aroma-bobman: You mean the Theme Options have issue in Chrome browser. Is it same issue in both of your site or just on your new site.

    in reply to: Pinterest Pin #17265
    Sakin
    Keymaster

    @klhaight: We haven’t check any pinterest plugin. Can you ask in that plugin support forum? If they ask to add any additional code then we are ready to incorporate with it. Plugins are supposed to support theme WordPress.org themes.

    in reply to: Use image for background #17264
    Sakin
    Keymaster

    @calvinocampo123: You can add background image from “Appearance => Background”. But because you have use “Black” color scheme, that is why it will be hidden. Let me know once you have added the background image and then I can send you the Custom CSS to remove the dark background.

    in reply to: Help! Site Crashed! #17262
    Sakin
    Keymaster

    @tlvannoy: How did it crashed? Did you change any plugins settings or added new plugins. Is so then go to your FTP and delete that plugin. If this is not the case then your hosting support should provide you with the error log.

    in reply to: Header Background #17251
    Sakin
    Keymaster

    @Steve: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .site { margin-top: 0; }

    in reply to: Hide menu bar link on mobile? #17248
    Sakin
    Keymaster

    @jpbertram: Sorry I don’t get it what you mean? So what are you trying to change it.

    in reply to: Changing Sidebars #17247
    Sakin
    Keymaster

    @lizzy39: There is no option to add these but yes it is possible by building child theme. So you can consider hiring customizer to work for you.

    in reply to: 404 error on mobile pages #17246
    Sakin
    Keymaster

    @jpbertram: You have separate sub-domain while browsing from mobile. When I check in your site http://www.commishcollege.com/. It redirects me to http://mobile.commishcollege.com/. So, check in your server setting for mobile. This is not done through our theme.

    in reply to: FB like in Footer #17245
    Sakin
    Keymaster

    @paulinepkehoe: Can you post your footer editor code and the facebook like code in http://gist.github.com/ and send me the url. Then I can check in your code and suggest you the fix.

    in reply to: Header Sidebars #17244
    Sakin
    Keymaster

    @Sarah: For widget spacing you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #header-right .widget_text { margin-bottom: 15px; }
    #header-right .widget_text p { margin-bottom: 0; }

    You cannot make it logo center with logo and right sidebar. It will need details customization and I think you should hire customizer.

    About the logo what you can do it. You can just add the Text from “Site Title” and “Tagline” from “Settings => General” and then go to “Appearance => Theme Options => Header Options”. Check “Move Site Title and Description” and add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #hgroup.with-logo { float: left; }
    #site-logo { clear: none; float: left; }
Viewing 20 posts - 9,701 through 9,720 (of 14,494 total)