Forum Replies Created

Viewing 6 posts - 2,001 through 2,006 (of 2,006 total)
  • Author
    Posts
  • in reply to: Custom Css not working in Simple Catch Pro #80318
    Pratik
    Member

    Hi @Joshua,
    To centre the menu, please remove that Custom CSS from “Appearance=> Theme Options=> Custom CSS” and add the following code:

    #access {
        text-align: center;
    }
    
    #access ul li {
        display: inline-block;
        float: none;
        margin-bottom: -7px;
        margin-left:-4px;
    }
    
    #access ul li li {
        display: block;
        float: left;
        text-align: left;
        margin-bottom: -1px;
        margin-left:0;
    }

    You have used custom CSS for Catch Responsive theme. The custom CSS for every theme is different. So you need to check each theme’s HTML structure carefully before adding them in.

    Let me know if this solves your issue.

    in reply to: Removing "Home" text from below Promotion Headline Button #80288
    Pratik
    Member

    Hi @KielChallen,
    You have used a static page as a home page. So, you can add following CSS in “Dashboard-> Appearance-> Customize-> Theme Options-> Custom CSS Options”

    .home #content {
        display: none;
    }

    This will hide the content in homepage.

    in reply to: Upgraded to Pro, menus now messed up #80283
    Pratik
    Member

    Hi @Alex,
    Thank you for figuring this out yourself.

    Both free and pro use same database but different settings(options). Some options were left out while migrating but will be fixed in the upcoming version.

    in reply to: New menu line after upgrade #80235
    Pratik
    Member

    Hi @Eduardo,
    It looks like you have disabled responsive design. You can add following CSS in “Dashboard->Theme Options->Custom CSS”, and it will hide for now. You might not need this css after there is theme update. So, check in theme change logs http://catchthemes.com/changelogs/catch-box-pro-theme/

    #branding .menu-access-wrap,
    #mobile-header-left-nav {
        display: none;
    }
    in reply to: function.php error #80234
    Pratik
    Member

    Hi @rkmoonak,
    It is really a bad idea to edit the core theme files. You will loose all the edited codes in next update. If you want to customize anything in the theme, then use child theme. For detailed instructions of child theme, you can visit this link.

    Now, for the code, use add the following function in your child theme’s function.php file

    /* Replacing Taxes with Service Fee */ 
    function my_em_text_rewrites($translation, $orig, $domain) {
    	str_replace('Service Fee','Taxes', $translation);
    	return $translation;
    }
    add_filter ( 'gettext', 'my_em_text_rewrites', 1, 3 );

    If this does not work, you will need to contact the plugin’s support as this is not in the theme scope.

    Pratik
    Member

    @Jürgen: Hi, it doesn’t seem there is this kind of issue after fresh install. Can you give your update on this issue?

Viewing 6 posts - 2,001 through 2,006 (of 2,006 total)