Forum Replies Created

Viewing 20 posts - 9,481 through 9,500 (of 14,504 total)
  • Author
    Posts
  • in reply to: Mobile Drop Down menu in Arabic #18002
    Sakin
    Keymaster

    @blackkeys: That will be your WordPress installation configuration file. Please check in wp-config.php file. This is not theme related question.

    in reply to: more width for posts #18001
    Sakin
    Keymaster

    @kpax: To increase the width of the content and decrease the width of the sidebar. We need to consider all the responsive design. So, I will give you the default one and then you can adjust the width as per you need. The following CSS can be added in “Appearance => Theme Options => Custom CSS” box.

    #primary { width: 754px; }
    #secondary { width: 406px; }
    @media screen and (max-width: 1224px) {
    	#primary { width: 654px; }
    	#secondary { width: 340px; }
    }
    @media screen and (max-width: 1060px) {
    	#primary { width: 530px; }
    	#secondary { width: 340px; }
    }
    @media only screen 
    and (min-device-width : 768px) 
    and (max-device-width : 1024px) 
    and (orientation : landscape) {
    	#primary { width: 590px; }
    	#secondary { width: 340px; }
    }	
    @media screen and (max-width: 960px) {
    	#primary, #secondary { width: 100%; }
    }
    in reply to: menu and tilte – right to left #17990
    Sakin
    Keymaster

    @guy.shachar76: Thanks for the update. We will fix this for RTL in new version. But for now you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #logo-wrap, 
    #top-logo, 
    #header-menu ul.menu li {
        float: right;
    }
    #sidebar-header-right, 
    .has-header-top.menu-logo #access-top {
        float: left;
    }
    in reply to: Adding Featured Image #17989
    Sakin
    Keymaster

    @rgidon: That’s nice.

    in reply to: Top-Level Menu Without Links #17984
    Sakin
    Keymaster

    @xpyouth: That is bit complicated. Can you try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #header-menu ul.menu #menu-item-121 ul.sub-menu { left: -61px; }
    #header-menu ul.menu #menu-item-121 ul.sub-menu ul { left: -188px; }
    in reply to: Images won't show #17983
    Sakin
    Keymaster

    @Karen Drost: It might be your server issues. Can you change to other theme and check in. I have just send in email. You can send me your site access there.

    in reply to: Adding Featured Image #17982
    Sakin
    Keymaster

    @rgidon: Just a note. I hope you haven’t change the core theme file functions.php, content-single.php, style.css and so on. If you have made changes to core theme files then your changes will be reverted back to original when you update the theme. So, if you want to change these core theme files then you need to build child theme and edit there.

    in reply to: Responsive header image #17981
    Sakin
    Keymaster

    @guy.shachar76: You most of the question will be solved if you check in the Theme Instruction of Catch Evolution Pro at http://catchthemes.com/theme-instructions/catch-evolution-pro/

    1. How to remove the rotating pictures that comes with the theme (house & flower)
    — The rotating pictures is called Featured Slider and you can check in theme instruction for more details.

    2. How to decrease header height
    — You can decrease the header height by reducing the Header Top Margin and Header Bottom Margin from “Appearance => Theme Options => Header Options”.

    3. how to modify the comment backround (it’s gray)
    — You can change the color code as per you need and then you can add the following CSS from “Appearance => Theme Options => Custom CSS” box.
    #respond { background-color: #fff; }

    4. How to change the menu and title to left to right.
    I don’t get this. Menu and title is at left only. Post in your site URl and explain where you want to move your menu and title.

    in reply to: Headings on working in Featured Content #17979
    Sakin
    Keymaster

    @Potzas: It’s because you have hide the title for the pages title from the following Custom CSS.

    .page .entry-title {
        display: none;
    }

    So, to show the title on the Featured Content. Either you need to remove the above CSS from Custom CSS box or you need add the following CSS to show only in the Featured content.
    .page #featured-post .entry-title { display: block; }

    in reply to: Mustang Theme – Multilingual and Colour Schemes #17978
    Sakin
    Keymaster

    @fastfun: Yes, you can use that logo and change the color of the site as per you need. Let me know if you need any help in customizing color.

    in reply to: Remove Post box. #17977
    Sakin
    Keymaster

    @greenlighttechs: You can hide that home by adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .home #content article { display: none; }

    in reply to: Top-Level Menu Without Links #17975
    Sakin
    Keymaster

    @xpyouth: I don’t get it. Can you send me your site URL?

    in reply to: Top-Level Menu Without Links #17957
    Sakin
    Keymaster

    @xpyouth: For that, you need to go to “Appearance => Menus” and then create custom menu. Then you need to assign that menu from “Appearance => Menus => Manage Locations”.

    So, for the menu it that you don’t want to link with. You need to add that menu item as links. In that custom link field, in URL just add # and in Link Text you can add the text to menu and wrap with span code like this <span onClick="return true">Parent Drop</span>, then click on “Add To Menu”. This will add that Prent Drop menu in your menu. Then after adding it, if you don’t want that # as well then you can delete that # from URL and Click on Save Menu.

    in reply to: not display site with IE #17954
    Sakin
    Keymaster

    @web-automobile: First, you are using old version of Catch Box Pro Theme. Please upgrade to latest version 2.8. Then I suspect Cache issues. So, can you clear your Cache from WP Super Cache Setting and then disable that plugin and check in.

    in reply to: Add pages or posts to displayed in the Slider #17953
    Sakin
    Keymaster

    @abofayez: Send me your site URL. You can view your style.css file from “Appearance => Editor”

    in reply to: Mobile Drop Down menu in Arabic #17952
    Sakin
    Keymaster

    @blackkeys: First you are not supposed to edit any core theme files such as style.css, index.php, functions.php and so on. As all these edits will be reverted back to original when you update the theme.

    For CSS changes, you can either add your custom CSS in “Appearance => Theme Options => Custom CSS” box or you need to build child theme and add it in style.css of child theme.

    Please send me your site URL and ask question in reference to your site. Then only I can check in your code.

    in reply to: Fonts & Line spacing #17951
    Sakin
    Keymaster

    @OtaKii: You can change the background color as per your need and then add the following CSS in “Appearnace => Theme Options => Custom CSS” box.
    .hentry { background-color: #fff; }

    in reply to: Adding Featured Image #17944
    Sakin
    Keymaster

    @rgidon: Featured Images cannot will not be displayed on post with Catch Box Theme. This featured image is used for Featured Post Slider and for archive pages to show Image and excerpt text. In post, you can add image in the post content itself.

    in reply to: Posts unreadable, they are broader than the screen?? #17943
    Sakin
    Keymaster

    @corvankruchten: It’s because of the plugin “wp google picasa pro” which adds the following CSS.

    #content {
        margin: 0 auto;
        padding-left: 20px;
        width: 100%;
    }

    Either you need to remove that css or deactivate that plugin.

    in reply to: Add pages or posts to displayed in the Slider #17941
    Sakin
    Keymaster

    @abofayez: Please post in your site URL. Did you check in the Theme Instructions http://catchthemes.com/theme-instructions/catch-evolution-pro

Viewing 20 posts - 9,481 through 9,500 (of 14,504 total)