Forum Replies Created

Viewing 20 posts - 8,881 through 8,900 (of 14,497 total)
  • Author
    Posts
  • in reply to: issue with displaying header #19883
    Sakin
    Keymaster

    @Jennifer: Featured image will not show the caption. Only the image added in your pages and post content section will show the captions.

    in reply to: Menu #19882
    Sakin
    Keymaster

    @zorter: Bit confused. I checked in your site URL and see that you have changed your menu color. I see that you have WP Super Cache Plugin installed. You need to clear your cache from WP Super Cache plugin settings as you make the changes.

    in reply to: images in the footer widget #19880
    Sakin
    Keymaster

    @suchi: Since it’s multiple image with different sizes, it will be difficult to align it. But you can try replacing your current custom css

    #supplementary .widget-area  .widget_sp_image {
        display: inline;
        float: left;
    }

    With the following CSS.

    #supplementary .widget-area .widget_sp_image {
        display: inline-block;
        vertical-align: top;
    }
    in reply to: Adding Nav Bar Menu Categories #19879
    Sakin
    Keymaster

    @Lucia: It’s ok and I hope this post will help other. So, let’s keep it.

    in reply to: Banner size #19876
    Sakin
    Keymaster

    @mscserginho: The replace your css with
    #hgroup-wrap, #hgroup, #site-logo { padding: 0; }

    I don’t get it why the image has 300px. Can upload/select the image from “Appearance => Header” and select the crop area cover full image and click on crop and publish. Maybe this will help.

    in reply to: Comments #19874
    Sakin
    Keymaster

    @J14: I hope this screenshot will show you how to enable and disable comments in pages
    http://www.pinterest.com/pin/548594798329843253/

    in reply to: Post Header Size #19873
    Sakin
    Keymaster

    @BEAUVAIS: Can you post your question in Catch Evolution Pro support form http://catchthemes.com/support-forum/forum/catch-evolution-pro-premium/ and also do post in your site url and maybe screenshot of what you want to change.

    Sorry this is simple catch theme support forum and others might get confused.

    in reply to: Banner size #19872
    Sakin
    Keymaster

    @mscserginho: It would have been better if you have posted your site URL as well. I see that you are using Catch Everest Free Theme. Then just go to “Appearance = Header” and upload the image size of width 1140px after you upload it use the button “Skip Cropping, Publish Image as Is” to upload the original image. Then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box to remove the padding.
    #hgroup-wrap, #hgroup { padding: 0; }

    But you cannot keep the social icon and search in the header right sidebar. It will go down or you can disable that from “Appearance => Theme Options => Header Right Sidebar”

    in reply to: issue with displaying header #19850
    Sakin
    Keymaster

    @Jennifer: That header image is not click-able. If you want to make that link then you need to build child theme and create functions.php file and then copy function catchevolution_featured_header() from custom-header.php file and edit it.

    Only logo has default link to homepage.

    in reply to: Content Area Background/Text Color #19849
    Sakin
    Keymaster

    @zscheimer: For detail color options you can upgrade to Pro version where there is Color Picker in Theme Options panel.

    The CSS that you have added in “Appearance => Theme Options => Custom CSS” will work fine but has issue there. There is missing closing bracket in your css }. Find the css

    /*Header Menu Color*/
    #header-menu {
    	background-color: #000000;

    and replace it with

    /*Header Menu Color*/
    #header-menu {
    	background-color: #000;
    }

    For content background color and text color will be as below:

    .site {
        background-color: #000;
        color: #fff;
    }
    in reply to: images in the footer widget #19848
    Sakin
    Keymaster

    @suchi: For that site, the css will be as below:

    #supplementary .widget-area  .widget_sp_image {
        display: inline;
        float: left;
    }
    in reply to: Remove menu bar #19847
    Sakin
    Keymaster

    @Karen Higginson: Did you refresh your browser and check in as I check in those pages and there is no menu bar. It’s hidden.

    in reply to: Remove menu bar #19834
    Sakin
    Keymaster

    @Karen Higginson: You can ad following CSS in “Appearance => Theme Options => Custom CSS” box to hide menu in disclaimer, biominix, cart and checkout pages.

    .page-id-127 #header-menu,
    .postid-19 #header-menu,
    .woocommerce-cart #header-menu,
    .woocommerce-checkout #header-menu {
        display: none;
    }
    in reply to: Multi Language #19831
    Sakin
    Keymaster

    @Ronald de Hommel: Can you post your code in https://gist.github.com/ and send me the link of your code. Then I can check in.

    in reply to: Customized Page Template #19830
    Sakin
    Keymaster

    @Karen Higginson: I have already replied you in http://catchthemes.com/support-forum/topic/remove-menu-bar-3/. Please don’t post same question twice.

    in reply to: Move header & decrease width of menu bar #19828
    Sakin
    Keymaster

    @Jopie:
    1. You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    body { padding-top: 20px; }

    2. For menu, can you try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 961px) {	
    #header-menu { margin: 0 auto; width: 754px; }
    #header-menu .wrapper { width: 754px; }
    #header-menu ul.menu a { padding: 0 0.8em; }
    }
    in reply to: Menu #19827
    Sakin
    Keymaster

    @zorter: Can you send me your site URL? I will check in if there is any default css that is overwriting.

    in reply to: links in the recent post #19826
    Sakin
    Keymaster

    @suchi: Which plugin did you add in for featured posts widgets? You need to ask in that plugin support forum.

    The link in the image is fine but the link in the “more” is conflicting with the page permalink. So, the plugin have to fix this. They need to make the more link to use the link like in the image.

    in reply to: Remove menu bar #19825
    Sakin
    Keymaster

    @Karen Higginson: This is manual process and you can just hide it with the help of Custom CSS specific to that page. So, can you send me the links of the pages for which you want to hide the images.

    in reply to: images in the footer widget #19824
    Sakin
    Keymaster

    @suchi: You can try adding in the following CSS in “Appearance => Theme Option => Custom CSS” box which will make your image widget align horizontally.
    #supplementary .widget-area .widget_simpleimage { display: inline-block; float: left; }

Viewing 20 posts - 8,881 through 8,900 (of 14,497 total)