Forum Replies Created

Viewing 20 posts - 12,621 through 12,640 (of 14,500 total)
  • Author
    Posts
  • in reply to: Header Help #7910
    Sakin
    Keymaster

    @These Earthlings: I need your site URL to see what you are doing it and I can send you the code.

    in reply to: Contact Form 7 #7909
    Sakin
    Keymaster

    Hi Karin,

    There is problem in your codes in Custom CSS box. I see that you have added the following code
    .entry-meta .no-padding-left {
    display: none;

    where it’s missing closing }

    It should be as following
    .entry-meta .no-padding-left { display: none; }

    in reply to: 3 things: position tagline / button shadow / grey bar #7895
    Sakin
    Keymaster

    @Jos: Greetings from Catch Themes.

    Q1: I want to remove the shadows behind the menu buttons (hover/active). When the buttons have a dark color the shadow looks okay, but I want to give them a lighter color.
    A1: You can remove the box shadow by adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #access ul li a:hover, #access ul li.current-menu-item a, #access ul li:hover > a { box-shadow: none; }

    Q2: I’d like to place my tagline Create > Art > Communicate at the same height as the text ‘.com’ (from my logo). Is that possible? Right now the tagline is positioned a little bit too high (go to http://www.brimbrom.com to see what I mean).
    A2: Kist add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    /* You can increase the padding top for large screen */
    #site-description { padding-top: 28px; }
    /* Now remove the padding top for mobile devices */
    @media screen and (max-width: 767px) { #site-description { padding-top: 0; } }

    Q3: I’ve removed the top grey bar in the header directly in style.css, is that the right way?
    — No it’s not. Don’t change any code files or sytle. If you want to change css then add it in “Appearance => Theme Options => Custom CSS” box or build child theme and add in the child theme style.css. This will maintain your changes even when you do the updates of the theme.

    We constantly update our theme to add new features and for fixes. So, if you have changes any code theme files, it will be overwritten when you do the updates.

    in reply to: Menu Hover – code for reightr justify #7894
    Sakin
    Keymaster

    @karinschultz: Sorry it cannot be that pixel perfect as due to change in different browsers. This is the max we can do about it.

    in reply to: Colour options – universal for headers #7893
    Sakin
    Keymaster

    @karinschultz: Just add the following css in “Appearance => Theme Options => Custom CSS” box.
    h1, h2, h3, h4, h5, h6 { color: #76cec8; }

    in reply to: Contact Form 7 #7892
    Sakin
    Keymaster

    Hi Karin,

    Really sorry for the issue and thanks for pointing out the missing css for email fields. We will add soon in next version update. But for now you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    input[type="email"] {
    padding: 5px 10px;
    -moz-box-shadow: 0 1px 5px #dcdcdc inset;
    -webkit-box-shadow: 0 1px 5px #dcdcdc inset;
    box-shadow: 0 1px 5px #dcdcdc inset;
    border: 1px solid #cccccc;
    height: 30px;
    line-height: 20px;
    width: 75%;
    -webkit-appearance: none;
    }

    in reply to: How to adjust keyline around page images #7891
    Sakin
    Keymaster

    @karinschultz: The size of them caption box depends on the image on the caption box not the text. But you can change the values from css. Try the following css in “Appearance => Theme Options => Custom CSS” box.

    /* To Increase the width of the caption box */
    .page .wp-caption { width: 300px; }
    /* To remove the border of the caption box */
    .page .wp-caption { border: none; }
    /* To decrease the padding left of the caption text */
    .page .wp-caption .wp-caption-text { padding-left: 10px; }
    /* For caption text font size and line height */
    .page .wp-caption .wp-caption-text { font-size: 12px; line-height: 18px; }

    in reply to: menu navigation issues with mobile browsers #7890
    Sakin
    Keymaster

    If you want to change the image size though css then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    /* Resize For Large Screens */
    img.wp-post-image { max-width: 50%; }
    /* Resize back full for Small Sreens */
    @media screen and (max-width: 960px) { img.wp-post-image { max-width: 97.4%; } }

    in reply to: Pro upgrade? #7889
    Sakin
    Keymaster

    @GAHC: Yes you are right. You can choose any photo.

    in reply to: Pro upgrade? #7879
    Sakin
    Keymaster

    @GAHC: You you can use any paid and free pugins

    in reply to: Increase Header–Tagline Font Size #7875
    Sakin
    Keymaster

    @ktglasscock: There is so many mistake code in our custom CSS box. Please correct.

    First remove this
    <abbr title=""> <acronym title=""> <b>

    Second missing } in
    .wpcf7-form p {
    font-size : 14px;
    margin-left: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
    width: 290px;
    padding: 0 0 10px;
    color: #fff;

    This should be

    .wpcf7-form p {
    font-size : 14px;
    margin-left: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
    width: 290px;
    padding: 0 0 10px;
    color: #fff;
    }

    in reply to: Responsive Custom Menu #7871
    Sakin
    Keymaster

    @jocatman: It depends on the requirement of the theme and the impact of the issues.

    in reply to: Just another wordpress site #7867
    Sakin
    Keymaster

    @Potzas: Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #site-title { text-shadow: none; }

    in reply to: Pro upgrade? #7865
    Sakin
    Keymaster

    @GAHC: See the additional featured in Catch Everest Pro at http://catchthemes.com/theme-instructions/catch-everest-pro/

    in reply to: Pro upgrade? #7864
    Sakin
    Keymaster

    @pt mannik: I’m thinking about upgrading to your pro version today, but need to know if there would be issues that would take my current version off line or break anything during the move?
    —- Catch Everest Pro uses the same code base but has additional features. The upgrade will be 90% smooth. But you might need to reconfigure header, background, custom menu and check widgets.

    in reply to: Increase Header–Tagline Font Size #7863
    Sakin
    Keymaster

    @ktglasscock: Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #site-description { font-size: 18px; }

    in reply to: Create horizontal text on Home page #7861
    Sakin
    Keymaster

    @GAHC: Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .home #featured-post .post { width: 100%; }

    in reply to: Just another wordpress site #7860
    Sakin
    Keymaster

    @Potzas: I think you are talking about site Tagline which come from “Settings => General” from your WordPress and change the tagline.

    in reply to: How to adjust keyline around page images #7859
    Sakin
    Keymaster

    Hello Karin,

    I don’t see any problem in this page http://www.iwritegreatcopy.com/who-am-i . Sorry, I don’t understand the problem.

    Regards,
    Sakin

    in reply to: Header Background Color #7858
    Sakin
    Keymaster

    @markTSL: Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #hgroup-wrap { background-color: #ff8833; }

Viewing 20 posts - 12,621 through 12,640 (of 14,500 total)