Forum Replies Created

Viewing 20 posts - 11,521 through 11,540 (of 14,501 total)
  • Author
    Posts
  • in reply to: Minimizing top space #11519
    Sakin
    Keymaster

    @mikel: You can send me your site URL. Then I can check your site and send you the custom css that you can add in your “Appearance => Theme Options => Custom CSS” box.

    in reply to: How to change the color of a link in my posts #11498
    Sakin
    Keymaster

    @klhaight: I check in your site code and you have added the link code in “Appearance => Theme Options => Custom CSS” box.

    a,
    #site-title a:focus,
    #site-title a:hover,
    #site-title a:active,
    .entry-title a:hover,
    .entry-title a:focus,
    .entry-title a:active,
    .widget_catchbox_ephemera .comments-link a:hover,
    section.recent-posts .other-recent-posts a[rel="bookmark"]:hover,
    section.recent-posts .other-recent-posts .comments-link a:hover,
    .format-image footer.entry-meta a:hover,
    #site-generator a:hover {
    	color: #b6b6b4;
    }

    I don’t know why you have added that css. For link the following css will be fine to add it in “Appearance => Theme Options => Custom CSS” box.
    a { color: #004d1b; }

    in reply to: Featured Slider Questions #11496
    Sakin
    Keymaster

    @jackwagon: You have blocked my IP. So, I am not being able to access it. So, I assume you are using Simple Catch Free theme and I am going to give you css as per that.

    You can simply add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .featured-text { display: none; }

    Sakin
    Keymaster

    @alessandra: You can adjust the padding bottom as per your need and then add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #hgroup-wrap {
        padding-bottom: 50px;
    }

    I don’t get is what you mean by bottom page to footer.

    in reply to: Theme Update #11491
    Sakin
    Keymaster

    @kdhutto1: Can you check now? For any issues related to sales and account. You can directly contact our sales staff at http://catchthemes.com/contact-us/

    in reply to: add thumbnail to serach results #11490
    Sakin
    Keymaster

    @Trishah: Can you send me your site URL? I need to check in your site and see which theme are you using it.

    in reply to: Remove Author/Date from only single.php #11489
    Sakin
    Keymaster

    @ElPollodiablo: Send me your site URL and then I can give you the suggestions.

    Don’t change any core theme files such as functions.php, header.php, style.css and so on. If you want to edit those core files, you need to build child theme and edit it. For simple css, you can add custom css in “Appearance => Theme Options => Custom CSS” box.

    in reply to: How to change the color of a link in my posts #11488
    Sakin
    Keymaster

    @klhaight: First, don’t change any core theme files such as style.css, functions.php and so on. For any CSS change, you can use Custom CSS box at “Appearance => Theme Options”.

    For easy option, you can just upgrade to Catch Box Pro, where there is color otption in theme options panel.

    For free theme, you need to send me your site url and color code that you want to replace with. Then I will send you the css.

    in reply to: protect from hackers #11487
    Sakin
    Keymaster
    in reply to: Color of footer area #11486
    Sakin
    Keymaster

    @rwaki: For easy option, you can just upgrade to Catch Everest Pro and then change the color from “Color Options” color picker.

    For free one, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #site-generator { background-color: #fff; }

    in reply to: Put widget first on mobile #11485
    Sakin
    Keymaster

    @Terry M: That is actually not possible. But there is trick that you can apply. Hope it works for you. Can you try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (max-width: 960px) {
    #main {
        padding-top: 245px;
        position: relative;
    }
    #secondary #black-studio-tinymce-2 {
        padding-top: 245px;
        position: relative;
    }
    }
    in reply to: Improving text look on a page #11470
    Sakin
    Keymaster

    @rwaki: There is font option only in pro version.

    Sakin
    Keymaster

    @alessandra: Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .page .site-content article { border-bottom: none; }

    in reply to: Header featured homepage not showing #11460
    Sakin
    Keymaster

    @Davide: Nice 🙂

    in reply to: put the menu below the slider #11458
    Sakin
    Keymaster

    @Sabrinilla: Nice 🙂

    in reply to: put the menu below the slider #11456
    Sakin
    Keymaster

    @Sabrinilla: Yes that true. I give you that example.

    in reply to: Improving text look on a page #11453
    Sakin
    Keymaster

    @rwaki: I don’t get what do you mean by arranging the text of the page. You can add in as per your wish.

    How did you add in your Upcoming Events and News? Can you send me your site URL?

    in reply to: Improving text look on a page #11452
    Sakin
    Keymaster

    @rwaki: I don’t get what do you mean by arranging the text of the page. You can add in as per your wish.

    How did you add in your Upcoming Events and News? Can you send me your site URL?

    in reply to: featured image slider text #11451
    Sakin
    Keymaster

    @heatherlb: Thanks looking forward to see your website. All the best. 🙂

    in reply to: put the menu below the slider #11449
    Sakin
    Keymaster

    @Sabrinilla: You can do that by building child theme and then in your child theme functions.php

    For example. The code will be as below:

    // Unhook default functions
    function unhook_default_functions() {
        remove_action( 'catcheverest_before_main', 'catcheverest_slider_display', 10 );
    }
    add_action('init','unhook_default_functions');
    
    add_action( 'catcheverest_after_hgroup_wrap', 'catcheverest_slider_display', 10 );
    

    For more about child theme hooks. See this http://themeshaper.com/2009/05/25/action-hooks-wordpress-child-themes/

Viewing 20 posts - 11,521 through 11,540 (of 14,501 total)