Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@sticksoutfitter: Yes, Custom CSS box in Theme Options panel and Child Theme, both are safe to to add your extra css which will not get overwritten when you update the theme.
* We added the Custom CSS box so that it’s easy for non technical person to just copy and paste the css that we give and solve their problem. This box is limited to CSS edits only.
* Creating child theme is bit technical and need technical knowledge. It can be used beyond the CSS edits like functions and theme structures.So, the conclusion is both are safe to use and depends on your edits. For small CSS edits I recommend using Custom CSS box in Theme Options panel and for advance customizing I recommend using Child Theme
Sakin
Keymaster@Marisol: Sorry we don’t have the intend when designing Catch Everest Theme. But if you don’t want image in Homepage Featured Content then leave the image URL as bank and then add in the Title and in Content box, you can add the video code.
Sakin
Keymaster@Marisol: Simply add the following css in “Appearance => Theme Options => Custom CSS” box to hide it.
.home .entry-header { display: none; }Sakin
Keymaster@suchi: That css will not work as you are using Header Top Sidebar and also you are adding 50px padding. So, to remove the top padding above the Header Top Sidebar. You need to ad the following css in “Appearance => Theme Options => Custom CSS” box.
#header-top { padding: 0; }Sakin
Keymaster@suchi: That is not from the theme that is why it didn’t get removed after you change the theme. It’s from the plugin Share and Follow. You can deactivate that from “Appearance => Plugins”
Sakin
Keymaster@rckstr: Oh that is why I got confused. Please try to post in Catch Box Free Forum so that other will not bet confused. Mixing one Theme question with other theme is confusing as of different design and structure.
Catch Box Free Theme: Removing Border in Table
Add the following CSS in “Appearance => Theme Options => Custom CSS” box..entry-content table, .entry-content td { border: none; }Sakin
Keymaster@paymyrant: This is strange. I need to look at our admin panel and the code. So, I will email you the details.
Sakin
Keymaster@medvind: YOu can add the following CSS in “Appearance => Theme Options => Custom cSS” box.
.site #cimy_div_id_0 { margin-bottom: 0; } .disable-header #main { padding-top: 20px; }For the translation you can need to create .mo and .po files for the theme files. Then you will be able to translate. Once you complete translation, you can send it to use and we will include in core theme file. For translation either you can use http://www.poedit.net/ software and create the language file or you can directly add translation in https://poeditor.com/projects/view?id=15645
Sakin
Keymaster@Mark: Oh you cannot add conditions in your footer editor box. For that you need to build child theme and add wp_loginout(). The best option at this stage will be to add meta widget in Footer Areas from “Appearance => Widgets”.
Sakin
Keymaster@cpoli: If you are talking about the border in our image inside the caption box then you can add the following css in “Appearance => Theme Options => Custom CSS” box to remove it.
.wp-caption { background: none transparent; max-width: 100%; padding: 0; }Sakin
KeymasterToday we released Catch Everest Pro 2.0, Catch Evolution Pro 2.0 and Catch Evolution Pro 2.0 where we have made possible changes to make it compatible with WPML plugin and qTranslate plugin. If this goes well then we will be adding it in all our other themes.
@buscando-soluciones: Sorry now available for Free version at this stage. You need to upgrade to Catch Everest Pro theme.Sakin
Keymaster@Mark: You nee to add your manual html link like below
<a href="http://yoursiteloginurl.com" title="Login">Login</a>Sakin
Keymaster@James: Sorry I am not sure about that. Need to be online to get the avatar. For offline avatar, you need to install plugin and custom profile image.
Sakin
Keymaster@Klaas: You can add the following css in “Appearance => Theme Options => Custom CSS” box.
.page-template-page-blog-php .entry-header { margin-bottom: 30px; } @media screen and (max-width: 1060px) { .page-template-page-blog-php .entry-header { margin-bottom: 20px; } }Sakin
Keymaster@paymyrant: There is no option to change the header image URL. It is supposed to be your homepage URL set in “Settings => General”. Did you customize the theme?
March 31, 2014 at 9:01 pm in reply to: Footer menu not displaying at smaller browser size / mobile devices #23692Sakin
Keymaster@jmb500: Oh this one is from responsive.css which loads after that is why your child theme style.css is not overwriting it. If you want to add in your child theme style.css then the css will be as below:
@media screen and (max-width: 767px) { #colophon #footer-menu .menu { display: block; } }March 31, 2014 at 8:29 pm in reply to: Footer menu not displaying at smaller browser size / mobile devices #23687Sakin
Keymaster@jmb500: First, you are not supposed to edit any core theme files as when you update the theme, our edits will be overwritten. So, either you need to add those css in Custom CSS box or build child theme and add in child theme style.css
Sakin
Keymaster@Melanie: It’s not possible just by css due to responsive design. But can remove the border and background. So, you don’t have to worry about height. Try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
#supplementary .widget { background-color: transparent; border: none; } #supplementary .widget img { border: none; }March 31, 2014 at 7:34 pm in reply to: Footer menu not displaying at smaller browser size / mobile devices #23679Sakin
Keymaster@jmb500: If that is the case then you need to disable back the footer menu from mobile “Appearance => Theme Options => Responsive Design” and then add the following css in “Appearance => Theme Options => Custom CSS” box.
@media screen and (max-width: 767px) { #footer-menu .menu { display: block; } } -
AuthorPosts
