Forum Replies Created

Viewing 20 posts - 13,921 through 13,940 (of 14,488 total)
  • Author
    Posts
  • in reply to: Twitter Feed Slider #3674
    Sakin
    Keymaster

    @paigeohliger: Yes this version is good one. Also Theme Option panel has been redesigned to make it easy to navigate.

    Also there is Theme Instructions for Catch Mustang: http://catchthemes.com/theme-instructions/catch-mustang/

    in reply to: Hide Bylines on Posts #3672
    Sakin
    Keymaster

    For pages

    .page .entry-header {
    padding-bottom: 0;
    }

    But for post and category that should work fine

    .entry-header {
    padding-bottom: 0;
    }

    in reply to: Featured Slider not listed #3668
    Sakin
    Keymaster

    @tamerch: thanks for informing. Yes, I just check it and found that there is lot of empty translation. I will have to push like on 1.8.1 version update.

    You can download the language folder for catch box http://catchthemes.com/downloads/catchbox-languages.zip

    in reply to: iPhone Issue #3667
    Sakin
    Keymaster

    Hi Jason,

    There is problem with your Custom Menu while you added the Home menu. For adding home menu in Custom menu.
    Go to “Appearance -> Menus”. Then click on View All in Pages. Then Check the Home:Home and click on Add to Menu. Then delete your old manual home you added. Then click on save will solve your issue.

    It should look like this http://catchthemes.com/demo/simplecatch-pro/

    Regards,
    Sakin

    in reply to: Hide Bylines on Posts #3666
    Sakin
    Keymaster

    @paigeohliger : There is padding you can decrease that
    .entry-header { padding-bottom: 20px; }

    in reply to: Move Social Links and Spacing #3665
    Sakin
    Keymaster

    Hi Zonal,

    Please remove this from “Custom CSS” and it will work
    #add_image_size( 'featured', 50, 50, true); // uses on homepage featured image

    You are supposed to add only css in “Custom CSS” box not the WordPress Functions.

    Regards,
    Sakin

    in reply to: Twitter Feed Slider #3663
    Sakin
    Keymaster

    @paigeohliger: Yes there was few problem in update notice in Catch Mustang. In this version we have fixed.

    • Redesign Theme Options Panel to make it standard
    • Fixed data-validation for Theme Options datas
    • Fixed the update notifier

    If you are using FTP to update then you can just upload the unzip copy and then replace the existing files.

    But if you want to use through WordPress Admin Panel. Then you need to first activate any other theme and then delete the existing Catch Mustang theme and then add the latest zip copy as new theme installation.

    in reply to: Few questions about fonts and menu tabs #3662
    Sakin
    Keymaster

    Hello Darek,

    The text ““czyli jak przetrwać pierwszy rok życia dziecka !” is not h2. It’s your site description. For that add the following css:
    #site-description { font-size: 16px; }

    Regards,
    Sakin

    in reply to: Suggestion #3661
    Sakin
    Keymaster

    Hi Jason,

    Thanks I will take a not and will try to add in. We have already started to add in in our Catch Box Theme.

    But for now you can use “Custom CSS” box and add the custom css for h1, h2, etc tags.

    Regards,
    Sakin

    in reply to: Horizontal thumbnail under post title #3660
    Sakin
    Keymaster

    @unster: Simple Catch Theme doesn’t support this. If you want to customize then you should do it by building child theme and code it. But it take a lot of time to do that and this theme is not designed to do that. Why don’t you try our other theme Catch Box http://wordpress.org/extend/themes/catch-box which has this option.

    in reply to: Hide Bylines on Posts #3659
    Sakin
    Keymaster

    @paigeohliger: Just add the following css in “Custom CSS” box in your Theme Options Panel.
    .entry-meta { display: none; }

    in reply to: Featured Post Slider #3658
    Sakin
    Keymaster

    @golfer300 : See the Theme Instruction http://catchthemes.com/theme-instructions/catch-box/ . The best size for featured slider is 644px width by 320px height.

    For adding bold Home above the Featured slider. This is bit complicated. You need to first build a child theme and then copy header.php and just add this in line no 97:
    <span style="font-size: 20px; display: block; font-weight: bold; padding-bottom: 10px;">Home</span>

    in reply to: No secondary menu on mobile device (Android Browser) #3650
    Sakin
    Keymaster

    Hi Jens,

    It is design like that to not to distract visitor when browsing from small devices. But if you want to make it visible. Then you can add the following CSS in “Custom CSS” box in your Theme Options panel.

    @media screen and (max-width: 767px) {
    #branding #access-secondary,
    #branding #access-secondary ul.menu {
    display: block;
    margin: 0;
    }
    }

    Regards,
    Sakin

    in reply to: Move Social Links and Spacing #3648
    Sakin
    Keymaster

    Cannot change the opacity of the larger grey background. You can either remove the background by adding following css in Custom CSS box
    #header {background: none; }

    Or you can change the background image to transparent one
    #header {background: url("Your Image URL") repeat-x scroll left bottom transparent; }

    For social icon above:

    #header .layout-978 { position: relative; }
    #header .logo-wrap { margin-top: 55px; }
    #header .social-search { margin-top: 10px; padding-right: 0; position: absolute; right: 0; top: 0; }

    in reply to: Youtue embed issue #3647
    Sakin
    Keymaster

    @james.hong: Simple Catch Pro theme is responsive theme that is why it adjust the width as per the screensize and with of the container. If you are pasting on non-resposive theme then there won’t be a problem. Also you have embed very large video width 978px and height 550px.

    So the best option will be to use embed video and use the width 640 and height 360 one.
    For example

    <iframe width="640" height="360" src="http://www.youtube.com/embed/Ki9h8kAltaY" frameborder="0" allowfullscreen></iframe>

    in reply to: Few questions about fonts and menu tabs #3646
    Sakin
    Keymaster

    Hello Darek,

    This is a long request. It would have been easier if you have break down your list in different thread.

    1. How can I change the font size for the H1 or H2 tags?
    — I have seen that you have already change the font size of heading of page title. For page title the css will be ad below:
    .entry-title { font-size: 18px; }
    For normal h1 and h2 you can use the following:

    h1 { font-size: 34px; }
    h2 { font-size: 22px; }

    2. How can I change the font style for the H2 tag and for the menu nav bar?
    — For menu bar font size change.
    #access ul li a { font-size: 13px; }

    3. How can I change width for the menus in nav bar? I want to move “Kontakt” menu to the right or to stretch all menus a bit to make it look good.
    — For this please “Custom Menu” features. See this http://en.support.wordpress.com/menus/
    To stretch them menu you can adjust the padding as needed
    #access ul li a { padding: 0 18px; }

    4. How to change the height of post image and text box on main page?
    — It is not recommended to change the height of the post image in the main page. For text box you can define the excerpt length through “Appearance -> Theme Options -> Theme Settings -> Excerpt / More Tag Settings. Increase the Excerpt Length.

    5. How I can turn off “comment’s box” for “Kontakt” page or other ?
    — You can turn off from though your “Discussion Box” in your page. See this http://en.support.wordpress.com/enable-disable-comments/

    6. How I can change background in comment’s ?
    — For post author background color
    .commentlist > li.bypostauthor { background-color: #DDDDDD; }

    — For others background color
    .commentlist > li.comment { background-color: #DDDDDD; }

    7. How I can change the font size and style in “Leave a comment” and “1 comment, 2 comments, etc” above comments box for example here : http://www.poradnikniemowlaka.pl/?p=86
    — For font size
    #comments-title, #reply-title { font-size: 25px; }

    For more please see the css tutorial http://www.w3schools.com/css/

    in reply to: Twitter Feed Slider #3643
    Sakin
    Keymaster

    @paigeohliger: thanks for reporting. Found small bug and now we have updated the theme to version 1.2. You can download the latest version from your account in Catch Themes and them upload the latest version.

    in reply to: Widget/sidebar menu color and comment box colors #3640
    Sakin
    Keymaster

    @PMSkita: Here goes the css that you can add it in “Custom CSS” box in your theme options page.

    /* For Widget Title */
    .widget-title, .widget-title a {
    color: #735C50;
    }
    /* For comment title */
    .reply-title {
    color: #735C50;
    }
    /* For Comment Grey Box */
    #respond {
    background-color: #CCCCCC;
    }
    /* For Comment Post Button */
    #respond input#submit {
    background-color: #222222;
    }

    in reply to: iPhone Issue #3634
    Sakin
    Keymaster

    @mangogear: It’s the facebook like script that is giving you trouble. As you can see in your screenshot your facebook like is too big. You need to reduce that, right now your facebook like width is set to 900px.

    Go to http://developers.facebook.com/docs/reference/plugins/like/ and in width add 280 and then uncheck show faces. Then Click on Get Code and use that code.

    in reply to: Catch Box Pro Header and Forum Question #3633
    Sakin
    Keymaster

    @arichardc: I told you that the picture needs to be of same height and width to make it fine. Why don’t you just use the Photoshop and add equal height and width image. If the image are not equal then you can add the background in Photoshop and center the image so that all image are of equal size.

Viewing 20 posts - 13,921 through 13,940 (of 14,488 total)