Forum Replies Created

Viewing 20 posts - 6,401 through 6,420 (of 14,505 total)
  • Author
    Posts
  • in reply to: image background #43888
    Sakin
    Keymaster

    @ashrafashraf: If you search your question before. I am sure I gave you this option already. For this you first need to disable Slider from “Appearance => Theme Options => Featured Slider” and then build child theme and add your new slider code in function using action hook. If you want large slider then use hook catchbox_before_primary and for content width slider use hook catchbox_content

    You can search from http://catchthemes.com/support-forum/users/ashrafashraf/, where I know I have already given you detail code to add new slider. Wohoo so many 59 topic started and 305 replies created. You are great.

    Sakin
    Keymaster

    @natoulie: You are welcome. Yes, it’s sometime hard to explain with just image and text. I am glad that I could solve this issue for you. Have a nice day 🙂

    P.S: lol yes he must be really good 🙂

    in reply to: Adspace Widget just on Main Site #43886
    Sakin
    Keymaster

    @Tillman: It is showing fine in Chrome and Firefox as well. It’s the Google Ads.

    in reply to: Remove Navigation Bar & Title on Header picture #43867
    Sakin
    Keymaster

    @Tillman: You can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #branding #site-logo img {
        border-radius: 5px 5px 0 0;
        -moz-border-radius: 5px 5px 0 0;
        -webkit-border-radius: 5px 5px 0 0;
    }
    in reply to: Float left for Thumbnail image #43866
    Sakin
    Keymaster

    @Tillman: Be careful as the css that you have added as above will make all the image in the content to be left align. So, I recommend you to replace that css with the following, which will just make the archive/homepage thumbnail to left.

    .entry-summary img.wp-post-image { 
       border: none;
       float: left;
    }
    in reply to: Expanding space after last post #43865
    Sakin
    Keymaster

    @Moellenkamp: You can add the following css in “Appearance => Theme Options => Custom CSS” box. If you want more space, then you can increase padding top from 25px to whatever you want.

    #content nav#nav-below {
        padding-top: 25px;
    }
    in reply to: Float left for Thumbnail image #43864
    Sakin
    Keymaster

    @Tillman: Cool that you got it yourself. Cheers 🙂

    in reply to: image background #43862
    Sakin
    Keymaster

    @ashrafashraf: This is always flexible and I don’t know how much. So, you need to check my yourself and add the flexibility and I have already given you suggestion.

    in reply to: image background #43851
    Sakin
    Keymaster

    @ashrafashraf: You will not be able to add this image to whole site as it’s not big enough and you have added css to position as
    background-position:18% 33%;

    Either your image position needs to be
    background-position: center top;

    Then you can fill in the rest with white background:
    `background-color: #fff;

    in reply to: Size of white space on home page #43850
    Sakin
    Keymaster

    @PSGClarity: You can add the following css in “Appearance => Theme Options => Custom CSS” box.
    #header-content { padding: 0; }

    in reply to: Remove Navigation Bar & Title on Header picture #43830
    Sakin
    Keymaster

    @Tillman:
    For Menu
    There is no default option to hide Primary Menu. But there is two trick to do it.
    1. Go to “Appearance => Menus” and then click on “create a new menu” and name is anything like “Hide Menu” and save changes. Then go to “Appearance => Menus => Manage Locations” and then select that Hide Menu in Primary Menu and save changes.
    2. Or if this is difficult then you can hide the menu from Custom CSS. For that you can add the following css in “Appearance => Theme Options => Custom CSS” box.
    #branding #access { display: none; }

    For Header Picture
    So, you want the Site Title and tagline text on header image, then you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    .logo-wrap { position: relative; }
    #hgroup { position: absolute; left: 40px; top: 20px; }
    Sakin
    Keymaster

    @natoulie: I think you misunderstood me. I understand you clearly in terms of your menu and I couldn’t explain it to you.

    Mobile Menu issue explanation:
    1. In you site rzesy-southampton.co.uk , it is showing “RzÄ™sy semi-permanentne” in your mobile menu. As this is the default homepage in your site. If you remove that page(homepage) from your menu then it will display “Menu” in your mobile menu as it doesn’t fine the homepage.
    2. This is what happen to infinitylashes.co.uk, you don’t have homepage in your menu. You have added Custom Link for infinitylashes.co.uk and added menu label as “Eyelash Extensions”. So, in mobile menu, it doesn’t recognize custom menu link so it showing Menu. So, when added Homepage in your menu, you need to go to “Appearance => Menus” and in the “Pages” box, click on “View All” and then select homepage in your menu. See this screenshot showing how to add proper home page http://www.pinterest.com/pin/548594798331207092/

    Line Height:
    Both of your site has same line height. But you are confused with paragraph code text each text inside paragraph code <p>your text</p> line height is controlled through your css. But the line between these paragraph code text is controlled by paragraph margin bottom css. To me more clear about your content in the post/page editor. Go to “Text Mode”. See this screenshot that shows how to show text mode http://www.pinterest.com/pin/548594798332210926/

    in reply to: Unidentified image in the header #43819
    Sakin
    Keymaster

    @Michaela: I check in your site and found the issue. The issue as missing Header Featured Image. Go to “Appearance => Theme Options => Header Featured Image Options”. Then either click on “Disable” and save changes to disable Header Featured Image or you can change the “Featured Header Image URL” to add in Featured Header Image.

    in reply to: Remove Navigation Bar & Title on Header picture #43816
    Sakin
    Keymaster

    @Tillman: Please post in your site URL so that I can check in details.

    in reply to: Sidebar on Front Page only? #43815
    Sakin
    Keymaster

    @Robertf: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to hide the page title in homepage.
    .home .page-header { display: none; }

    in reply to: Optional Sidebar #43814
    Sakin
    Keymaster

    @LaurenReneL: It’s not working as when I check in your Custom CSS and see that there was missing closing brackets } before the css I have you. So, go to “Appearnace => Theme Options => Custom CSS” box and then you will see the following css
    #branding ul.menu li { display: inline-block; float: none;
    See there is missing closing brackets }
    So, it needs to be:
    #branding ul.menu li { display: inline-block; float: none; }

    Then all the css will work.

    in reply to: Featured Content Images not centered #43813
    Sakin
    Keymaster

    @Adam: Thanks for reporting issues in detail. Cheers 🙂

    in reply to: Featured Content Images not centered #43796
    Sakin
    Keymaster

    @Adam: Thanks for finding out the issue. For now, you can add the following css in “Appearance => Theme Options => Custom CSS” box. We will fix this soon in next version update and then you can remove it later.

    @media screen and (min-width: 981px) {	
        #featured-post.layout-four .post { width: 23%; }
    }
    in reply to: Optional Sidebar #43795
    Sakin
    Keymaster

    @LaurenReneL:
    1. You can change the margin and padding as per your need to reduce the spaces between widget. After changing it, you can add it in “Appearance => Theme Options => Custom CSS” box.

    #secondary .widget {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    2. Add the following css in “Appearance => Theme Options => Custom CSS” box.

    #masthead { 
        display: none;
    }

    3. Try adding following css in “Appearance => Theme Options => Custom CSS” box.

    .right-sidebar #primary {
        border: 1px solid #eee;
    }

    4. Add the following css in “Appearance => Theme Options => Custom CSS” box.

    #header-top {
        background-color: #000;
    }
    in reply to: Secondary Menu #43794
    Sakin
    Keymaster

    Hi Michaela,

    1. You can increase the padding left and right as per your need but you need to careful with small screensize. Here is the following css that will be good for your large screensize, you can add it in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 1153px) {
    #secondary-menu ul.menu a {
        padding-left: 35px;
        padding-right: 35px;
    }
    }

    2. You can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #secondary-menu ul.menu .current_page_item a {
        background-color: #fff;
        color: #000;
    }

    Regards,
    Sakin

Viewing 20 posts - 6,401 through 6,420 (of 14,505 total)