Forum Replies Created

Viewing 20 posts - 7,241 through 7,260 (of 14,505 total)
  • Author
    Posts
  • in reply to: Creating blog archives #34941
    Sakin
    Keymaster

    @theresem: The command [archive] is not theme shortcode. I think previously you had plugin to show that archive and now it seems like that plugin is not active in your new site. So, check for the plugin.

    in reply to: How to remove dark box behind image in footer #34830
    Sakin
    Keymaster

    @yuccacane: I don’t know how you got that background color. Can you add in your site URL, so that I can check in CSS for you.

    in reply to: Make Slider larger #34829
    Sakin
    Keymaster

    @drlapco: Sorry this Simple Catch theme is build in 978px grid system and your slider image will be automatically cropped to 978px width. So, cannot make it large. To make the large slider, you might need to change the theme like Adventurous and Catch Kathmandu

    in reply to: Creating blog archives #34826
    Sakin
    Keymaster

    @theresem: To show all blog post in the page, there is 2 options.
    1. You can edit your page and assign that page template as “Blog”. For this you will see “Page Attribute” box at the right bottom of your page editor.

    2. Or you can add assign your Blog page in “Posts page” at “Settings => Readings”.

    in reply to: Responsive Menu Displaying Last Item #34825
    Sakin
    Keymaster

    @thelifeofclare: I see the problem lies when you are in Homepage. So, can you check your custom menu and check in how you have added in the Home item. To add home item, you need to select “View All” in menu pages and then then select Home and click on add to menu. See this video tutorial: http://catchthemes.com/blog/videos-blog/video-series-creating-wordpress-custom-menus/

    If you are further, having issues then you can go to “Appearance => Theme Options” and check “Enable Secondary & Footer Menu in Mobile Devices”. This will change your labe of menu in Mobile to just “Menu”

    in reply to: questions about the structure of the theme #34801
    Sakin
    Keymaster

    @philippe: I am not sure what you mean. If you want to make your image to the left the please replace previous css that I gave you with the following:

    .entry-summary .wp-post-image {
        display: inline;
        float: left;
        width: 30%;
    }

    And to decrease the words count in your excerpt content. You need to go to “Appearance => Theme Options”, change the word count in “Excerpt Length in Words” and then “Save Changes”

    in reply to: resize image area #34656
    Sakin
    Keymaster

    Hello Jim,

    This is bit difficult as it’s responsive design. So, let’s change that only for large screen. Try adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    /* For Screen size minimum 769px */
    @media screen and (min-width: 769px) {
        #main-slider .featured-img {
            float: right;
            width: 68%;
        }
    }

    Regards,
    Sakin

    in reply to: Home Page Jumping When Feature Image Changes #34653
    Sakin
    Keymaster

    @Laurie: I just check in your site and your image slider images. Following are your image sizes in Slider.
    1. 1280px width 719px height
    2. 1280px width 719px height
    3. 1280px width 960px height
    4. 1280px width 960px height
    5. 1280px width 960px height
    You can see 1 and 2 have 719px height and then 3, 4 and 5 have 960px height. That is why it is moving up and down.

    So, the best option is to make the images of equal height as if we control it from CSS, it is not good for site loading.

    in reply to: questions about the structure of the theme #34648
    Sakin
    Keymaster

    @philippe: Not so sure about that. As this theme is not designed that way. But you can try adding in the following css in “Appearance => Theme Options => Custom CSS” box to make your thumbnail image to the right of the excerpt content.

    .entry-summary .wp-post-image {
        display: inline;
        float: right;
        width: 30%;
    }
    in reply to: adjusting logo positioning #34647
    Sakin
    Keymaster

    Hello jim,

    Now sure about that.

    Regards,
    Sakin

    in reply to: problem with the upgrade to version 0,3 #34629
    Sakin
    Keymaster

    Hello Alain,

    Problem is fixed and also we have come up with Video about Custom Menu http://catchthemes.com/blog/videos-blog/video-series-creating-wordpress-custom-menus/

    Regards,
    Sakin

    in reply to: resize image area #34564
    Sakin
    Keymaster

    Hello Jim,

    Sorry, your question is not so clear. Do you mean to change the slider layout or the content layout. I am bit confused.

    For Slider, you can you Image Slider and upload the image as per your need and then change the text layout with CSS.

    Regards,
    Sakin

    in reply to: adjusting logo positioning #34562
    Sakin
    Keymaster

    Hello Jim,

    To center your logo, first you need to disable the Header Right section from “Appearance => Theme Options => Header Right Sidebar Options” and check in “Disable Header Right Sidebar” and save changes.

    Then you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #branding .logo-wrap {
        display: block;
        float: none;
        text-align: center;
        width: 100%;
    }
    #site-logo {
        float: none;
    }
    #site-logo a img {
        float: none;
        padding: 0;
    }

    Regards,
    Sakin

    in reply to: Page font size #34505
    Sakin
    Keymaster

    Hi Maeve,

    See the features addition in Catch Evolution Pro at theme instructions page http://catchthemes.com/theme-instructions/catch-evolution-pro/

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

    @media screen and (min-width: 960px) {	
    	body,
    	button,
    	input,
    	select,
    	textarea {
    		font-size: 22px;
    	}
    }
    in reply to: Change footer #34502
    Sakin
    Keymaster

    @maevamena: You are not supposed to any any HTML code in Footer Code in Webmaster Tools. This is for scripts like Google Analytics, Add This, Facebook and so on. So, this place, you can add scripts but not HTML code.

    To change the Footer Text, you need to upgrade to Catch Evolution Pro, where you will get “Footer Editor Option” in Theme Option panel to change the text.

    in reply to: header background image #34501
    Sakin
    Keymaster

    @dallakyan: You can replace the image url in the following CSS and css in “Appearance => Theme Options = Custom CSS” box to add background image in header.

    #hgroup-wrap {
        background-attachment: fixed;
        background-image: url("http://catchthemes.com/demo/catch-kathmandu/wp-content/themes/catch-kathmandu-pro/images/demo/kathmandu-durbar-square-1280x600.jpg");
        background-position: center center;
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover; 
        background-size: cover;
    }
    in reply to: questions about the structure of the theme #34498
    Sakin
    Keymaster

    Hello Philippe,

    1. For Header right advertisement, you need to upgrade to Catch Box Pro theme and then you will get Header Right Sidebar and then you can add Advertisement widget in Header Right Sidebar from “Appearance => Widgets”.

    2. You can reduce the word count of the excerpt from “Appearance => Theme Options” and change the Excerpt Length in Words.

    3. You can change the background color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box.
    #main { background-color: #eee; }

    Regards,
    Sakin

    in reply to: Help to fix Nextgen Gallery bug needed #34429
    Sakin
    Keymaster

    Hello Birgit,

    Sorry this error has nothing to do with the Theme. This is your server and plugin incompatible issue. So, please check in with your Website Hosting server and the plugin support forum.

    Regards,
    Sakin

    in reply to: Remove space before unordered list #34428
    Sakin
    Keymaster

    @Michaela: Sorry I don’t think Catch Everest Theme has space before unordered list. Can you post your URL where you have that spaces. I need to check in.

    in reply to: erreur détecté par google #34426
    Sakin
    Keymaster

    @philippe: Ok I see there is problem with the french language file fa_IR.po. We will fix this in new version update. Thanks.

Viewing 20 posts - 7,241 through 7,260 (of 14,505 total)