Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@abofayez: Send me your site URL. You can view your style.css file from “Appearance => Editor”
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.
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; }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.
December 5, 2013 at 8:42 pm in reply to: Posts unreadable, they are broader than the screen?? #17943Sakin
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.
Sakin
Keymaster@abofayez: Please post in your site URL. Did you check in the Theme Instructions http://catchthemes.com/theme-instructions/catch-evolution-pro
Sakin
Keymaster@Halconio: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
#header #mainmenu, .featured { width: 1098px; }Sakin
KeymasterHi Ally,
Thanks for your appreciation and yes we are working on new themes as well.
Regards,
SakinSakin
Keymaster@OtaKii: I don’t recommend changing the font size as if you change font size for large screen then you need to change it for mobile devices as well. Yes, you can add only for screen size larger then 960px as below in your “Appearnace => Theme Options => Custom CSS” box.
/* For Screen Larger then 960px */ @media screen and (min-width: 961px) { body, input, textarea { font-size: 15px; } }Sakin
Keymaster@rgidon: Add the following CSS in “Appearance => Theme Options => Custom CSS” box to remove the border only in the page.
.hentry.type-page { border: none; }I am giving you the CSS on the basis of the theme uses in this support. So, if you are using different one then add in your site URL.
Sakin
Keymaster@Halconio: For main content size, you can change the width of the following CSS and add it in “Appearance => Theme Options => Custom CSS” box.
/* For Width */ div.layout-978 { width: 978px; } /* For Border */ #sidebar.col4 { border-left: 1px solid #e7e7e7; }Sakin
Keymaster@calvinocampo123: If you see in your pages title, it’s changed, see it here
http://restareasofyourlife.com/contact-me/ , the title “Contact Me” is different then your other text.Sakin
Keymaster@Thomas: Hello Thomas, I just check in your site srowlen and it’s working fine on Mobile devices. Can you check in our side?
Sakin
Keymaster@insanelydivine: You cannot change your username but I have changed your nickname. So, now it will display as insanelydivine.
For reducing the width of the sidebar, you need to consider which screensizes you want to reduce for as it’s responsive design. Right not the default is as below. You can change the width as per you need and add it in “Appearance => Theme Options => Custom CSS” box.
#secondary { width: 406px; } @media screen and (max-width: 1224px) { #secondary { width: 340px; } } @media screen and (max-width: 960px) { #secondary { width: 100%; } }To remove the boxes and just add separator line between my content and sidebar, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
.hentry, .widget, .no-results, #author-info, #disqus_thread, #content .error404 { border: none; } #primary { border-right: 1px solid #ccc; }Sakin
Keymaster@prius4f: I am confused what are you talking about as the latest version of Catch Mustang is Version 2.2. not 2.8.
Sakin
Keymaster@web-automobile: It’s because of your customization and I cannot track it all to check in details. But I guess I need the following code in header which might be creating issues. Why you have added fb-root div. See the syntax as below.
<!--[if lte IE 8]> <div id="fb-root" style="width: 90;"></div> <!--<![endif]-->Sakin
Keymaster@jen: I just talked with my sales and asked to fix your account issues. You can directly contact our Sales and Account department at http://catchthemes.com/contact-us for any of the sales issues.
Sakin
Keymaster@fastfun: Catch Mustang theme is Translation ready theme where you will find catchmustang.pot files in languages directory. But I am not sure about the plugin how they use translation. You need to ask in that plugin support forum.
About the Color Options in Theme Options panel, you have basic color options. But if you want to change in details then you can post it in this support forum with your site URL and then I can provide you the CSS to add in your “Appearance => Theme Options => Custom CSS” box.
Sakin
Keymaster@swapnaranjitanayak: Post cannot have page template. But if you trying to add the author functions to your posts then you can build child theme and then copy the function
simplecatch_loop()in your child theme functions.php file and add it. -
AuthorPosts
