Forum Replies Created

Viewing 20 posts - 11,021 through 11,040 (of 14,509 total)
  • Author
    Posts
  • in reply to: Menu Bar Lines and Menu Text Bold #13096
    Sakin
    Keymaster

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

    #header #mainmenu ul li a:hover, #header #mainmenu ul li.current-menu-item a, #header #mainmenu ul li.current-menu-parent a, #header #mainmenu ul li.current_page_item a, #header #mainmenu ul li.current_page_ancestor a, #header #mainmenu ul li:hover > a {
        background-color: #fff;
        color: #444;
    }
    in reply to: Breadcrumbs plugin issue #13095
    Sakin
    Keymaster

    @Joaozinho: Your child theme header.php replace

    <div id="content" role="main">
        <?php 
        /** 
         * catchbox_content hook
         *
         * @hooked catchbox_slider_display - 10 if full width image slide is not selected
         */
        do_action( 'catchbox_content' ); ?>

    With the following code

    <div id="content" role="main">
    	<?php if ( function_exists( 'yoast_breadcrumb' ) ) { yoast_breadcrumb('<p id="breadcrumbs">','</p>'); } ?>
    	<?php 
        /** 
         * catchbox_content hook
         *
         * @hooked catchbox_slider_display - 10 if full width image slide is not selected
         */
        do_action( 'catchbox_content' ); ?>
    in reply to: Problem with pictures #13094
    Sakin
    Keymaster

    @ashrafashraf: I just check in your site and you have change it successfully. It’s from “Appearance => Theme Options => Footer Editor”

    in reply to: How to remove the stripe in caption #13093
    Sakin
    Keymaster

    @Joaozinho: Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .wp-caption .wp-caption-text {
        padding-left: 0;
        text-align: center;
    }
    in reply to: Widget shown in half #13092
    Sakin
    Keymaster

    @Joaozinho: If you search at you code you will see Height define in 2 place. One with Height="120" and another Height="198". Just replace 120 with 198. So, both will be 198.

    Form next time, please paste the code in pastebin.com and just send us the link.

    in reply to: Decrease the size columns? #13068
    Sakin
    Keymaster

    @impresnet: It’s because you have decreased the menu line height. Now, you need to change the position of sub menu. So, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #header-menu ul.menu ul { top: 15px; }

    in reply to: Decrease the size columns? #13050
    Sakin
    Keymaster

    @impresnet: For menu height: You can decrease the line-height and for featured you can decrease the width. Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    /* For Menu */
    #header-menu ul.menu a { line-height: 29px; }
    /* For Featured */
    #featured-post {
        display: block;
        margin: 0 auto;
        width: 80%;
    }
    in reply to: Breadcrumbs plugin issue #13049
    Sakin
    Keymaster

    @Joaozinho: You can build child theme and add it in header.php just below the code <div id="content" role="main">

    in reply to: Change size text #13048
    Sakin
    Keymaster

    @impresnet: Font Family option is there only in Pro version not in Free version. See more details about Catch Everest Pro at http://catchthemes.com/theme-instructions/catch-everest-pro/

    in reply to: How to remove the stripe in caption #13047
    Sakin
    Keymaster

    @Joaozinho: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .wp-caption .wp-caption-text:before { content: none; }

    in reply to: Widget shown in half #13046
    Sakin
    Keymaster

    @Joaozinho: Bit confused why it is not working. But when I check in the code. I see that your embed code height is not enough. Increase that.

    in reply to: hover color in header widget #13043
    Sakin
    Keymaster

    @oly: Oh sorry slight mistake. There should be no space between #header-right and .widget-area. Please replace the previous css with the following
    #header-right.widget-area .widget a:hover { color: #404040; }

    in reply to: Breadcrumbs plugin issue #13027
    Sakin
    Keymaster

    @Joaozinho: We don’t have breadcrumbs options in Catch Box Theme. Can you show me your site URL? Then I can check in if there is anything that I can help you with.
    Please consult plugin author as well.

    in reply to: 2.5 Update Not available #13026
    Sakin
    Keymaster

    @fritzhesse: I have just talked with sales. Check your account now. If you still have issue then you can contact to our sales directly from http://catchthemes.com/contact-us/

    in reply to: Page Tweaks #13025
    Sakin
    Keymaster

    @EveryHome:
    To make the top corners of navigation bar rounded. You need to add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #branding #access { border-radius: 5px 5px 0 0; }

    make the text widget the same width as the other widgets in my side bar
    — It is always same

    To change the link colour in the navigation bar, you need to change the color code and then add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #branding ul.menu a { color: #ccc; }

    To change the link colour in footer, you need to change the color code and then add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #site-generator a { color: #ddd; }

    in reply to: Problem after updating to 3.6 wordpress #13024
    Sakin
    Keymaster

    @Armandos: It shouldn’t be a theme issue as we have tested theme with latest version 3.6. Also at the same time we haven’t use the function wpdb in Catch Box Pro.

    in reply to: Menu Bar Lines and Menu Text Bold #13023
    Sakin
    Keymaster

    @Cassandra:
    can I also remove the complete line around the menu bar?
    — Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #header #mainmenu { border: none; }

    And can I remove the thin black/grey line at the very top of page?
    — Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #header .top-bg { display: none; }

    in reply to: hover color in header widget #13022
    Sakin
    Keymaster

    @oly: Which color you want and then change the color code as per you need. Color code means the code #404040 . For more color code check this site http://html-color-codes.info/

    in reply to: hover color in header widget #13010
    Sakin
    Keymaster

    @oly: You need to change the color code as per you need in the following CSS and then add it in “Appearance => Theme Options => Custom CSS” box.
    #header-right .widget-area .widget a:hover { color: #404040; }

    in reply to: Page is crashing #13009
    Sakin
    Keymaster

    @diegolora83: This is not the theme issue. For system log our, you need to consult with your Hosting Server Support Team.

Viewing 20 posts - 11,021 through 11,040 (of 14,509 total)