Forum Replies Created

Viewing 20 posts - 1,821 through 1,840 (of 14,506 total)
  • Author
    Posts
  • in reply to: Problems with the template. Footer overlapping page. #78567
    Sakin
    Keymaster

    @Alexander: You css needs to be as:

    #feature-slider .entry-container,
    #feature-slider .entry-container:hover {
          display: none;
    }
    in reply to: feature image smaler and texte on the right #78564
    Sakin
    Keymaster

    @dominique: Sorry there is no option for thumbnail on left and text on the right layout like in Catch Base theme. Every theme is designed differently.

    The main difference is design and then features. For features, you can compare between from theme instructions
    http://catchthemes.com/theme-instructions/catch-evolution-pro/
    and
    http://catchthemes.com/theme-instructions/catch-base-pro/

    in reply to: logo aligned to menu #78563
    Sakin
    Keymaster

    @isabella: Please post in your site URL so that we can check in.

    in reply to: Font size of post title on Home page #78562
    Sakin
    Keymaster

    @Vitaliy: Please post in your site URL and let me know you desire font size for homepage and rest of the pages. Then I can check in your site and send you custom css.

    in reply to: Credits on footer #78561
    Sakin
    Keymaster

    I see that you have code like this
    <a target="_blank" href=""><a href=&quot;http://catchthemes.com/&quot;>Catch Themes</a></a>

    With you need to fixed by changing to:
    <a target="_blank" href="http://catchthemes.com/">Catch Themes</a>

    in reply to: Remove spaces (margins) from header #78560
    Sakin
    Keymaster

    @Makarov: You can replace your css:

    #hgroup-wrap, .hentry, .comments-area article {
    padding-bottom: 0rem;
    padding-top: 0rem;
    padding-left: 0rem;
    padding-right: 0rem;
    }

    With the following:
    #hgroup-wrap, .hentry, .comments-area article { padding: 0; }

    Then add the following css:
    #site-logo { padding-top: 0; }

    in reply to: Breadcrumb #78555
    Sakin
    Keymaster

    Sorry try the following code:

    // Unhook default Catch Responsive functions
    function unhook_catch_responsive_functions() {
    	add_action( 'catchresponsive_after_header', 'catchresponsive_add_breadcrumb', 50 );
    }
    add_action( 'init', 'unhook_catch_responsive_functions' );
    
    //Adding Breadcrumb Primary menu
    add_action( 'catchresponsive_after_header', 'catchresponsive_add_breadcrumb', 10 );
    in reply to: Slider images impossible to change #78531
    Sakin
    Keymaster

    @Roy: Thanks for your appreciation and you too have a nice day 🙂

    in reply to: hide author and tags #78505
    Sakin
    Keymaster

    @Cattext: ok then replace previous css to following css:
    .in-tag, footer.entry-meta span:nth-child(4) { display: none; }

    in reply to: Background color menu #78499
    Sakin
    Keymaster

    @mithrand: Ok for that you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #access ul .current-menu-item > a, 
    #access ul .current-menu-ancestor > a  {
        background-color: #2781c0;
        box-shadow: none;
    }
    in reply to: hide author and tags #78498
    Sakin
    Keymaster

    @Cattext: You can add the following css in “Appearance => Theme Options => Custom CSS” box:
    footer.entry-meta { display: none; }

    in reply to: Changing bg of only Sidebar Two #78497
    Sakin
    Keymaster

    @Isabella: You can change the color code in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:

    #third .widget {
        background-color: #fff;
        border-color: #ddd;
    }
    in reply to: Menu not showing on mobile devices #78496
    Sakin
    Keymaster

    @jkok: Looks like you have edited code theme files inside chicago theme directory. Looks like you have removed code in footer.php which is causing the issue. Revert back the original files and your mobile menu will work fine.

    in reply to: Widget code being added? #78495
    Sakin
    Keymaster

    @JOSHUA: I see that your signup widget used Tables, where we have border. You can change that border color by adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    .signupframe td { border-color: #8d8d8d; }

    in reply to: Upgrade to Pro faies! #78494
    Sakin
    Keymaster

    @Arndt: It should work, after you download zip file from your account at http://catchthemes.com/my-account. You need to upload this pro version from “Appearance => Themes => Add New => Uploads” and then upload it and then activate it. After that you can setup your site using theme instructions mentioned at http://catchthemes.com/theme-instructions/catch-responsive-pro/

    in reply to: Can't remove sliders, featured images,etc #78493
    Sakin
    Keymaster

    @kemar:
    1. To disable slider: you need to go to “Appearance => Customize => Featured Slider => Slier Options” and in “Enable Slider”, you need to select “Disable”. Then click on “Save & Publish”

    2. To disable featured header: you need to go to “Appearance => Customize => Header Image” and in “Enable Featured Header Image”, you need to select “Disable”. Then click on “Save & Publish”

    Please post in your Site URL is this is not working.

    in reply to: Slider images impossible to change #78492
    Sakin
    Keymaster

    @Roy: In Full Frame Pro theme you can Slider Type as “Featured Image Slider, Featured Page Slider, Featured Post Slider and Featured Category Slider”, which you can choose from “Appearance => Customize => Featured Slider => Select Slider Type”.

    After you select the slider type, you need to setup accordingly. If you select “Featured Image Slider”, then you can upload image, add in title, content and links as per your need and click on “Save & Publish” but if you choose other then you need to create page/post with featured image first.

    For more, refer to theme instructions at http://catchthemes.com/theme-instructions/full-frame-pro/#featured-slider

    in reply to: Breadcrumb #78490
    Sakin
    Keymaster

    @LynJon: For this level of customization, first you need to build child theme. For child theme, you can download it from http://catchthemes.com/blog/create-child-theme-wordpress/

    Then in your child theme functions.php, first you need to add the following code to remove the breadcrumb:

    // Unhook default Catch Responsive functions
    function unhook_catch_responsive_functions() {
    	add_action( 'catchresponsive_after_header', 'catchresponsive_add_breadcrumb', 50 );
    }
    add_action( 'init', 'unhook_catch_responsive_functions' );

    Then you need to add the following code to add breadcrumb above Primary Menu

    //Adding Breadcrumb Primary menu
    add_action( 'catchresponsive_after_header', 'catchresponsive_add_breadcrumb', 10 );
    in reply to: social media icons won´t show in frontend #78489
    Sakin
    Keymaster

    @webtussi: I check in your site http://new.aquariumcomputer.com/de/ but your site is in maintenance mode and I cannot view it. Also your admin will be accessible only to admin users.

    So, once you add Social widgets from “Appearance => Widgets” to your footer widget area. Did you add in Your social profile URL from “Appearance => Customize => Social Links => Social Links”.

    in reply to: Multiple H1 #78488
    Sakin
    Keymaster

    @Clems26: I don’t see multiple H1 in your site. Also which H1 are you trying to change it. You can change it by building child theme and editing it.

    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 Everest 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/

Viewing 20 posts - 1,821 through 1,840 (of 14,506 total)