Forum Replies Created

Viewing 20 posts - 11,381 through 11,400 (of 14,501 total)
  • Author
    Posts
  • in reply to: Header, menu and search box questions #11907
    Sakin
    Keymaster

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

    1) Add a line between each item in the menu. I would like division in the menu bar like this website (I found on your forum): http://timewisefoundation.org.uk/
    — Add the following css in “Appearance => Theme Options => Custom CSS” box.
    #header-menu ul.menu a { border-right: 1px solid #b18da5; }

    2) Change color of header text’s shadow. The default color is white (I think).
    — Change the color code as per your need and add the following css in “Appearance => Theme Options => Custom CSS” box.
    #site-title { text-shadow: 2px 2px #e6e6e6; }

    3) Change color of the text in search box. The default color is gray.
    — Add the following css in “Appearance => Theme Options => Custom CSS” box.
    input#s { color: #c56161; }

    in reply to: match color #11905
    Sakin
    Keymaster

    @kz2284: Yes best option will be use transparent image .png or you can use same color background in your logo. When I check your logo, you are using gradient background.

    in reply to: FEATURED IMAGES DON'T APPEAR #11904
    Sakin
    Keymaster

    @philipharper: You need to set the featured image. Not add to post. See this http://en.support.wordpress.com/featured-images/#setting-a-featured-image

    in reply to: Center Footer #11903
    Sakin
    Keymaster

    @MrJonnyJones: Can you send me your site URL and then let me know detail. Like you want to center whole footer.

    in reply to: Change the text in comments form #11900
    Sakin
    Keymaster

    @Bill Pagonas: Looks like you have added it differently. Let me contact you though email. Can you tell me the changes and then will send you child theme.

    in reply to: Hyperlink in gallery image #11899
    Sakin
    Keymaster

    @Nixos: You don’t need to re-upload. You can just edit those image and add the link. But you might need to recreate gallery.

    in reply to: Hyperlink in gallery image #11886
    Sakin
    Keymaster

    @Nixos: Yes you can do that from “Custom Link” options. See this screenshot http://pinterest.com/pin/548594798329863531/

    in reply to: Text/Image box in side bar #11884
    Sakin
    Keymaster

    @keithphotos: In that Widget you will see one ad code box, this is for those who want to add the ads code from Google Adsense and other. But if you want image then you can just paste the image URL in the image input box.

    in reply to: Problem with dropdown menu and future slider #11883
    Sakin
    Keymaster

    @armandosarris: Thanks for your appreciation.

    in reply to: Change language #11882
    Sakin
    Keymaster

    @Marianne: Yes you can make it drop down menu through Menus. Go to “Appearance => Menus” and build your own menu. Read more at http://en.support.wordpress.com/menus/

    For text file you can download it from http://catchthemes.com/languages/simple-catch-language.rtf .In this file there is text in msgid. For example: msgid “We are sorry! This page is not available.” and you need to translate it in your language.

    in reply to: Nexus 7 Landscape Menu Display Problem #11867
    Sakin
    Keymaster

    @arichardc: You can upload screenshot in your own site or in any image sharing site. Then you can post the url here.

    in reply to: Can't Download Theme? #11866
    Sakin
    Keymaster

    @illibo: I have restore your account. Now you should be able to download it from your account at http://catchthemes.com/my-account/. If you still have issue, then you can contact to our sales and account directly at http://catchthemes.com/contact-us/

    in reply to: Hyphens #11864
    Sakin
    Keymaster

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

    .site-content article {
    	-webkit-hyphens: none;
    	-moz-hyphens: none;
    	hyphens: none;	
    }
    in reply to: Automatic Slider #11863
    Sakin
    Keymaster

    @Bill Pagonas: If you are using Simple Catch Pro theme and you want your latest post to go in the slider, then you must use “Featured Category Slider”.

    To use featured category slider,
    1. Go to “Appearance => Theme Options => Featured Slider => Slider Options”. Then in “Select Slider Type”, you need to select “Featured Category Slider”.
    2. After you select the “Featured Category Slider”. You need to select the category from “Featured Category Slider Options”. If you want from all category then you can select multiple category.

    in reply to: Text/Image box in side bar #11862
    Sakin
    Keymaster

    @keithphotos: In Catch Box Pro theme, it’s really simple. You can just login to your WordPress Dashboard. Go to “Appearance => Widgets”. Then you can drag and drop “Catch Box Adspace Widget” to your sidebar.

    in reply to: Change language #11860
    Sakin
    Keymaster

    @Marianne: Can you check the following article. We already have .pot file, you just need to create .mo and .po file for Danish language.
    See this http://wp.tutsplus.com/tutorials/theme-development/translating-your-theme/

    If you think it’s complicate. Then let me know it. I will send you text file and you can just convert the text.

    in reply to: Change the text in comments form #11859
    Sakin
    Keymaster

    @Bill Pagonas:
    You need to build child then. Then create the file functions.php and add the following code.

    /**
     * Altering Comment Form Fields
     * @uses comment_form_default_fields filter
     */
    function simplecatch_comment_form_fields( $fields ) {
    	$req = get_option( 'require_name_email' );
    	$aria_req = ( $req ? " aria-required='true'" : '' );
    	
        $fields['author'] = '<label for="author">' . __('Name','simplecatch') . '</label><input type="text" class="text" placeholder="'.esc_attr__( 'Name', 'simplecatch' ) .'&nbsp;'. ( $req ? esc_attr__( '( required )', 'simplecatch' ) : '' ) .'" name="author"'. $aria_req .' />';
    	$fields['email'] = '<label for="email">' . __('Email','simplecatch') . '</label><input type="text" class="text" placeholder="'.esc_attr__( 'Email', 'simplecatch' ) .'&nbsp;'. ( $req ? esc_attr__( '( required )', 'simplecatch' ) : '' ) .'" name="email"'. $aria_req .' />';
    	$fields['url'] = '<label for="url">' . __('Website','simplecatch') . '</label><input type="text" class="text" placeholder="'.esc_attr__( 'Website', 'simplecatch' ) .'" name="url"'. $aria_req .' />';
    
        return $fields;
    } // simplecatch_comment_form_fields
    in reply to: Problem with dropdown menu and future slider #11857
    Sakin
    Keymaster

    @armandosarris: You can add the following css in “Appearance => Theme Options => Custom CSS” box.
    #branding { z-index: 90; }

    in reply to: Having trouble centering header #11856
    Sakin
    Keymaster

    @klhaight: You can just add the following CSS in your child theme style.css or in “Appearance => Theme Options => Custom CSS” box
    .logo-wrap { float: none; }

    in reply to: Featured Content Re-location #11855
    Sakin
    Keymaster

    @MikeGilbert: Ok I have just send your the Child Theme in your email. You can just upload and use it.

Viewing 20 posts - 11,381 through 11,400 (of 14,501 total)