Forum Replies Created

Viewing 20 posts - 4,321 through 4,340 (of 4,916 total)
  • Author
    Posts
  • in reply to: Customize landing page #86091
    Mahesh
    Participant

    Hi @micha,

    I checked your site before it crashed. The site is up again. 🙂
    1. Remove space and change background to white:
    You can fix it with Custom CSS. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    .page.page-id-5384 #main {
          padding-top: 0;
    }
      
    .page.page-id-5384 .site {
          box-shadow: none;
    }
      
    .page.page-id-5384 {
          background-color: transparent;
    }

    2. I don’t see the picture. Please clarify more.

    Regards,
    Mahesh

    in reply to: How to make fixed header responsive? #86081
    Mahesh
    Participant

    Hi @calmo16,

    You have a really long menu that is why there is an issue with responsive, you can use the following CSS to reduce the padding by a little. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    @media screen and (min-width: 1200px) and (max-width: 1280px) {
       .clean-box-nav-menu a, .sidebar-header-right .widget_nav_menu a {
          padding: 13px 15px;
       }
    }
      
    @media screen and (min-width: 991px) and (max-width: 1201px) {
      .clean-box-nav-menu a, .sidebar-header-right .widget_nav_menu a {
          padding: 13px 10px;
      }
    }

    And for putting the image in the middle, add the following CSS:

    #fixed-header-top #logo-icon {
        margin: 0 auto;
        float: none;
        display: block;
        text-align: center;
    }
    
    #fixed-header-top #logo-icon img {
        display: inline-block;
    }

    Regards,
    Mahesh

    in reply to: Split Undefined #86074
    Mahesh
    Participant

    Hi @shawng0yahoo-com,

    Are you using any plugins, if yes, please try disabling the plugins one-by-one and check again. In our server the theme is working fine and so as the customizer. Let me know if the problem persists. Please post in your site url.

    Regards,
    Mahesh

    in reply to: Anchor Header #86073
    Mahesh
    Participant

    Hi @ejzohn,

    I am afraid this is not possible.

    Regards,
    Mahesh

    in reply to: Leaderboard banner #86070
    Mahesh
    Participant

    Hi @bia,

    For header image you can use any size image as you want to. You can crop to your desired size or skip cropping and upload the full image.

    Regards,
    Mahesh

    in reply to: Drop down menu color #86067
    Mahesh
    Participant

    Hi @eggbanana,

    Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    .nav-primary .menu .sub-menu a, .nav-primary .menu .children a {
        background: none repeat scroll 0 0 rgba(0, 0, 0, 1);
    }

    Regards,
    Mahesh

    in reply to: Responsive mobile menu not working #86066
    Mahesh
    Participant

    Hi @uoft,

    I checked your site and both the mobile menu and desktop menu is working fine. Didn’t find any issue. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Customize landing page #86064
    Mahesh
    Participant

    Hi @micha,

    I checked your given url (landing page), the site says “File not found 404 error”. Let me know as soon as the site is up.

    Regards,
    Mahesh

    in reply to: Mobile Menu Location and Customization #86062
    Mahesh
    Participant

    Hi @husker,

    The menu seems to be working fine, what seems to be the problem.

    Regards,
    Mahesh

    in reply to: Featured image problem #86061
    Mahesh
    Participant

    Hi @spacer,

    Did the issue start only after the update? On our server, there is no such problem, theme is working normally. Please try disabling the plugins and check again. Let me know if the problem persists.

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @leoibra,

    1. I don’t quite get it what you meant, please clarify.

    2. Multiple H1
    Also only one H1 per page is old. It was only valid for HTML4.
    In HTML5, you can have more then one H1 tag. That was issue only when you use HTML4 tags. In HTML5, H1 tag per article tag is good for SEO and we have carefully designed H1 tags with special attention on header tag and headings
    Catch Evolution Pro theme is build in HTML5, CSS3 and Responsive design. So, H1 is better for SEO then H2.
    You can also check this Video http://www.youtube.com/watch?v=GIn5qJKU8VM by Google software engineer Matt Cutts, who clearly states that you can use multiple H1 but don’t over do it. Also use h1 specific to heading and header tags.
    You can also check this article URL http://html5doctor.com/html5-seo-search-engine-optimisation/
    But if you really want to change it, you can change it by building child theme and editing it.

    3. There is no theme option for this. You can use Yoast SEO plugin for this.

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @kjcornerstoneva,

    For this you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php add the following codes.

    function manage_image_size() {
        remove_image_size( 'gridalicious-featured-content' );
        add_image_size( 'gridalicious-featured-content', 400, 225, false );
    }
    add_action( 'init', 'manage_image_size' );

    Then use Regenerate Thumbnails plugin once to generate thubmnails. You can visit this link for the plugin: https://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Mahesh

    in reply to: Featured image problem #85973
    Mahesh
    Participant

    Hi @spacer,

    Can you please clarify more with your site url and screenshot (if possible).

    Regards,
    Mahesh

    in reply to: Featured Content & Featured Slider error? #85972
    Mahesh
    Participant

    Hi @studiodimare,

    Its quite strange that you are facing the issues in your server, the theme and the options are working fine on ours. We have to check further in your server. We will contact you through email for details.

    Regards,
    Mahesh

    in reply to: Background Image and Background Scroll #85971
    Mahesh
    Participant

    Hi @matthewseanmclachlan,

    Please use the following CSS:

    #main article:last-of-type {
          margin-bottom: 50px
      }

    Note: Please change the value as required.

    Regards,
    Mahesh

    in reply to: Alexa Verification ID #85968
    Mahesh
    Participant

    Hi @ciglianoweb,

    Thank you for your suggestion.
    Its not quite sure that whether Alexa ID verification will be included in Theme Options in future release or not. You can use Catch Web Tools for that very feature. You can find it in the following link:
    https://wordpress.org/plugins/catch-web-tools/

    Regards,
    Mahesh

    in reply to: Mobile Menu Location and Customization #85967
    Mahesh
    Participant

    Hi @husker,

    Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    #mobile-header-left-menu {
        float: right;
    }
    .mobile-menu-text {
        display: inline-block;
        vertical-align: top;
    }

    Regards,
    Mahesh

    in reply to: Footer Addition #85966
    Mahesh
    Participant

    Hi @husker,

    Just checked your site, seems you’ve managed to change the footer content.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Featured content, Text widget, Promoheadline, Languages #85965
    Mahesh
    Participant

    Hi @scubafreak,

    Oh great to know you’ve been here and thank you for all your helps. 🙂
    Glad you enjoyed you time here, hope you’ll visit us again.
    Yes it was difficult time for all due to earthquake. People are gradually going back to their normal living.
    The steps you’ve gone through is all you need to translate theme, its quite odd that nothing changed. Please use WPML or qtranslate plugins and try again.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Disable Mobile Version #85964
    Mahesh
    Participant

    Hi @catchemall,

    Did you create the child theme manually or with the help of some plugins?
    Just checked your site, in your site, you are still using parent theme’s style.css and there is nothing in child theme’s style.css. To achieve your requirement i.e. disabling mobile version compeletely, you have to only enqueue child theme’s style.css and use the above css I’ve given. If the problem still persists, remove all the functions from child theme’s functions.php and check again.

    Let me know if any problems.

    Regards,
    Mahesh

Viewing 20 posts - 4,321 through 4,340 (of 4,916 total)