Forum Replies Created

Viewing 20 posts - 1,241 through 1,260 (of 14,500 total)
  • Author
    Posts
  • in reply to: Can't change site logo #90313
    Sakin
    Keymaster

    @cresskill1: Hello Michael,

    Thanks for posting your issue here. There was Simple Catch Pro update version 3.6.1 released on 20th April, 2016, which fixed this issued.

    So, I have updated your site with the latest version of Simple Catch Pro theme and it’s fixed now.

    Regards,
    Sakin

    in reply to: Custom page template #90300
    Sakin
    Keymaster

    @edusanz: This goes beyond our support scope. But there is guideline for you.
    To create any custom template, first you need to build child theme, for child theme refer to https://catchthemes.com/blog/create-child-theme-wordpress/ and then create page template refer to https://developer.wordpress.org/themes/template-files-section/page-template-files/page-templates/

    in reply to: Header to go across the page #90298
    Sakin
    Keymaster

    Thanks and Have a nice day Helen

    in reply to: Header to go across the page #90271
    Sakin
    Keymaster

    @helen: It’s because of new custom logo feature in WordPress 4.5. Just go to “Appearance => Customize => Header Image” and then click in “Hide Image”

    in reply to: Blank space above header image #90253
    Sakin
    Keymaster

    @pennytravelers:
    1. The main space in header is there because of your logo image. See this http://pennytravelers.com/wp-content/uploads/2016/04/81504_Penny-Travelers_Logo_-1-e1461425309622.png your logo image has lot of spaces. So, you need to crop this and re-upload it.
    2. You can remove the margin above menu by adding the following css in “Appearance => Theme Options => Custom CSS” box:
    #header #mainmenu { margin-top: 0; }
    3. About the mobile version, this theme is not responsive. So, it will be same in mobile as well. If you want then you can use our Simple Catch Pro theme. Check out demo at https://catchthemes.com/demo/simplecatch-pro/

    in reply to: , issues #90250
    Sakin
    Keymaster

    @knudkp: Both will have same color headline and sub-headline will have same color.
    But if we want separate color for sub-headline, then change the color code in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    #promotion-message p { color: #404040; }

    in reply to: Responsive behavior does not work #90249
    Sakin
    Keymaster

    @AlbertVilella: Thanks for your appreciation and if you like my support and Catch Adaptive theme and please provide of positive review and rating at https://wordpress.org/support/view/theme-reviews/catch-adaptive?filter=5

    Thanks 🙂

    in reply to: menu and submenu of Pro version not transparent #90237
    Sakin
    Keymaster

    @mupa: But if you check your first post, you have mentioned about Primary nav.
    So, can you post in your site URL and then I can check in what’s issue in your header of your site and why the header background color is not changing.

    in reply to: menu and submenu of Pro version not transparent #90232
    Sakin
    Keymaster

    @mupa: For transparency background color, we need to use RGBA color code. That’s why the color options in will not work. Color option uses hexadecimal color code, which is solid code.

    So, if you want to change primary menu background color from black to white. You need to add the following css in “Appearance => Customize => Theme Options => Custom CSS” options box:

    .nav-primary {
        background: #fff;
        background: rgba(255,255,255,0.7);
    }
    in reply to: Responsive behavior does not work #90230
    Sakin
    Keymaster

    @AlbertVilella: Please delete your custom css and add the following css. Your css is only for fixed with. When you change the width, you need to change the width as per the screen size.

    @media screen and (min-width: 783px) {
    	.two-columns  #primary { width: 900px; }
    	.two-columns #secondary { width: 242px; }
    }
    @media screen and (max-width: 1280px) {
    	.two-columns #primary { width: 830px; }
    }
    @media screen and (max-width: 1152px) {
    	.two-columns #primary { width: 770px; }
    }
    @media screen and (max-width: 1100px) {
    	.two-columns #primary { width: 690px; }
    }
    @media screen and (max-width: 1000px) {
    	.two-columns #primary { width: 630px; }
    }
    @media screen and (max-width: 940px) {
    	.two-columns #primary { width: 480px; }
    }
    @media screen and (max-width: 782px) {
    	.two-columns #primary { width: 100%; }
    }
    in reply to: , issues #90227
    Sakin
    Keymaster

    @knudkp: You shouldn’t add HTML code like h2, p is your Promotion headline. Please remove it.
    1. For Color, in Catch Base Pro theme, you can go to “Appearance => Customize => Color Options => Promotion Headline Color Options” and change it as per your need.
    2. For size, you need to edit the font size in the following css as per your need and add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    @media screen and (min-width: 768px) {
        /* Promotion Message Font Size */
        #promotion-message { font-size: 15px; }
        /* Promotion Headline Font Size */
        #promotion-message h2 { font-size: 30px; }
    }
    in reply to: Responsive behavior does not work #90186
    Sakin
    Keymaster

    @AlbertVilella: Can you post in your site URL and then I can check in your changes and why it’s not working. When you change the width, you need to use responsive css.

    in reply to: qTranslate-X strange behavior #90185
    Sakin
    Keymaster

    @pfms84: Yes, those multi-language plugin like qTranslate-X, Polylang and WPML are supported only in pro version.

    in reply to: , issues #90184
    Sakin
    Keymaster

    @knudkp: Sorry I don’t understand what you mean? Can you explain what are you trying to do it? Are you trying to change the color?

    in reply to: menu and submenu of Pro version not transparent #90180
    Sakin
    Keymaster

    @mupa: Yes, when you change color from “Color Options”, it will replace default color and it will will solid color. To make transparent color changes, you need to send us the color code and your site URL. Then we can check your site and send you custom css, so that you can add in your site.

    in reply to: Top menu bar disappears when opening site on mobile. #90179
    Sakin
    Keymaster

    @centaine: You shouldn’t add that CSS. You need to remove that css.

    in reply to: Full Width Disable Sidebar Template #90178
    Sakin
    Keymaster

    @slecarpe: Please post in your site URL and then I can check in.

    in reply to: White Space in between post title and post #90143
    Sakin
    Keymaster

    @gettheinsideright: Just add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .home .entry-title { display: none; }
    .home #main { padding-top: 0; }
    in reply to: how to change background opacity? #89978
    Sakin
    Keymaster

    @c-o: Sorry this support forum is only for the sites that are using our themes.

    in reply to: "Customize" is not fully loading on 3 of 4 sites #89966
    Sakin
    Keymaster

    @mrichwncc: It was solved by re-installing the theme. So, if anyone else have this issue then send us your detail by filling this form at https://catchthemes.com/blog/customizer-not-working-wordpress-update/

Viewing 20 posts - 1,241 through 1,260 (of 14,500 total)