Forum Replies Created

Viewing 20 posts - 4,741 through 4,760 (of 14,504 total)
  • Author
    Posts
  • in reply to: Translation #52764
    Sakin
    Keymaster

    @Anders: Let me check in details with you. I will email you personally.

    in reply to: Wrong translation in theme admin area #52760
    Sakin
    Keymaster

    @Felix: translation is submitted by users. So, we cannot grantee 100% correct. If you want to fix it then we will me more that happy to fix that. you can download free software from poedit.net and then edit de_DE.po file which you will find in language folder.

    I will also email you for more details.

    in reply to: Comment box is not at the right position #52758
    Sakin
    Keymaster

    @IceCreamHunter: Your comment is option only for login use so how do I check in? Sorry no option for flash to zoom in and out .

    in reply to: remove grey border featured slider #52757
    Sakin
    Keymaster

    @fan: Can you please post in your site URL so that I can understand it and send you the custom css.

    in reply to: Double Header Image? #52756
    Sakin
    Keymaster

    @crankit: It’s because of opacity. You can simply add the following css in “Appearance => Theme Options => Custom CSS” box:
    #hgroup-wrap a:hover img { opacity: 1; }

    in reply to: Header side margins and padding #52755
    Sakin
    Keymaster

    @notjustblack: Thanks for your appreciation and review 🙂

    in reply to: Background Widget Color and Disappearing Menu #52753
    Sakin
    Keymaster

    @luvharris: To change the footer sidebar area to white from blue, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #footer-sidebar { background-color: #fff; }

    Then later, you might want to change the border color as well. For that, change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
    #colophon { border-color: #1b5f7d; }

    in reply to: Remove title from page #52751
    Sakin
    Keymaster

    @leotrim77: Try adding in the following css in “Appearance => Theme Options => Custom CSS” box:
    #content .type-page .entry-title { display: none; }

    in reply to: Change on hover #52749
    Sakin
    Keymaster

    @harriet: Add the following css in “Appearance => Theme Options => Custom CSS” bnox:
    .home #content .entry-title a:hover,
    .home #content .entry-title a:focus,
    .home #content .entry-title a:active {
    color: #eee;
    }

    in reply to: Search results layout #52748
    Sakin
    Keymaster

    @notjustblack:
    1. You can add the following css in “Appearance => Theme Options => Custom CSS” box:
    .search-results .entry-meta { display: none; }

    2. Search result page will show featured image of that post. Other then that you need to build child theme and customize it.

    3. Just go to “Appearance => Theme Options => Excerpt/Mote Tag Settings” and change More Tag Text and Excerpt length(words).

    in reply to: Space between the top of the page and the logo #52746
    Sakin
    Keymaster

    @Marcus: Simply add the following css in “Appearance => Theme Options = Custom CSS” box:
    #sidebar-header-right { display: none; }

    in reply to: Center Main Menu #52745
    Sakin
    Keymaster

    @Kenneth: You can try adding in the following css in “Appearance => Theme Options => Custom CSS” box:
    #branding #access { text-align: center; }
    #branding ul.menu li { display: inline-block; float: none; }

    in reply to: Homepage Headline/ Subheadline #52744
    Sakin
    Keymaster

    @Lisa: Sorry there is no option to do that. If you know the coding then you can build child theme and add image in that area.

    in reply to: Change Color of Footer #52743
    Sakin
    Keymaster

    @livlevi2: There is option in “Appearance => Theme Options => Color Options => Site Color Options”. There you can change Footer Background Color, Footer Background Sidebar Color. Further, if you want to change color of any item that is not there in color option then please add in your site URL explain which element color you want to change with the color code. Then I will provide you custom css.

    in reply to: Space between Slideshow/Footers #52742
    Sakin
    Keymaster

    @albertoc: Can you check your setting at “Appearance => Theme Options => Homepage Settings => Homepage/Frontpage Settings”. Since, you don’t need front page or latest post, you can just “Uncheck” option “Enable Latest Posts or Page” and save changes.

    Further, if this doesn’t fix it then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    .home #main { padding-top: 0; }

    in reply to: Main Nav Stop Scrolling #52697
    Sakin
    Keymaster

    @Kim: After you set it up menu as Fixed Header Top then don’t forget to enable Fixed Header Top bar from “Appearance => Theme Options => Fixed Header Top Options =>
    Enable Fixed Header Top”.

    in reply to: Fixed/Sticky Menu and Transparency/Opacity #52695
    Sakin
    Keymaster

    Ok then remove the previous css that I gave you. Which is
    #header-right {
    margin-right: 10px;
    margin-top: -60px;
    }

    Then add the new css:
    #header-left {
    position: relative;
    z-index: 1;
    }
    #header-right {
    margin-right: 10px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    }

    You can just disable Header Featured Image. For that go to “Appearance => Theme Options => Header Featured Image Options” and in “Enable Featured Header Image”, you can select “Disable” and save changes.

    in reply to: How to remove Website field in comments #52692
    Sakin
    Keymaster

    @Keith: There is no option to remove website field in the comments. It’s from the WordPress Comment. For this you need to build child theme, for child theme check out http://catchthemes.com/blog/create-child-theme-wordpress/ and add the following code in child theme functions.php file:

    /**
     * Altering Comment Form Fields
     * @uses comment_form_default_fields filter
     */
    function adventurous_comment_form_fields( $fields ) {
    
    	unset( $fields['url'] );
    	return $fields;
    }
    add_filter( 'comment_form_default_fields', 'adventurous_comment_form_fields' );
    in reply to: Small Sqaure Appears Between Under Header #52691
    Sakin
    Keymaster

    @Lorkster: it’s loading Header Featured Image and the image URL is not found that is why it is showing like that. So, you need to go to “Appearance => Theme Options => Header Featured Image Options” and in “Enable Featured Header Image” option select “Disable” and save changes. Then also check in “Featured Header Image URL” there.

    in reply to: Full Width adjustment #52690
    Sakin
    Keymaster

    Sorry I guess so that is why it’s pro version. There are lot of other premium features, you can check our theme instructions page at http://catchthemes.com/theme-instructions/catch-base-pro/

Viewing 20 posts - 4,741 through 4,760 (of 14,504 total)