Forum Replies Created

Viewing 20 posts - 8,221 through 8,240 (of 14,505 total)
  • Author
    Posts
  • in reply to: Custom CSS Box #23936
    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

    in reply to: Can I Use Featured Content Option with A Video Link? #23935
    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.

    in reply to: How Do I Remove The Word "Home " From Home Page? #23934
    Sakin
    Keymaster

    @Marisol: Simply add the following css in “Appearance => Theme Options => Custom CSS” box to hide it.
    .home .entry-header { display: none; }

    in reply to: white space above in header #23933
    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; }

    in reply to: Follow bar #23932
    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”

    in reply to: Tables & Borders #23931
    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;
    }
    in reply to: Change Header URL #23885
    Sakin
    Keymaster

    @paymyrant: This is strange. I need to look at our admin panel and the code. So, I will email you the details.

    in reply to: too much space and translation problems #23880
    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

    in reply to: login in Footer #23875
    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”.

    in reply to: Image borders #23874
    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;
    }
    in reply to: Qtranslate and featured slider #23872
    Sakin
    Keymaster

    Today 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.

    in reply to: login in Footer #23752
    Sakin
    Keymaster

    @Mark: You nee to add your manual html link like below
    <a href="http://yoursiteloginurl.com" title="Login">Login</a>

    in reply to: Adding my avatar to my postings #23750
    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.

    in reply to: Catch Everest – Home page #23749
    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; }
    }
    in reply to: from wamp to online server #23696
    Sakin
    Keymaster

    @Mark: Yes sometime, site takes time to clear the cache and load it.

    in reply to: Change Header URL #23694
    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?

    Sakin
    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; }
    }
    Sakin
    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

    in reply to: Make widgets in footer same height #23685
    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; }
    Sakin
    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; }
    }
Viewing 20 posts - 8,221 through 8,240 (of 14,505 total)