Forum Replies Created

Viewing 20 posts - 2,821 through 2,840 (of 14,507 total)
  • Author
    Posts
  • in reply to: Featured Content Titles #62108
    Sakin
    Keymaster

    @Phil: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    .home #content .entry-header { display: none; }

    Can you send me your site URL so that I check in to add spaces. You can either add padding-bottom or margin-bottom for Promotion headline and it depends on the background change. So, either use:
    #promotion-message { padding-bottom: 20px; }
    or
    #promotion-message { margin-bottom: 20px; }

    in reply to: Creating Contact Us forms #62107
    Sakin
    Keymaster

    @Carol: For contact form, you can use any contact plugin. We recommend using contact form 7 or Jetpack plugin contact form. So, just install/activate the plugin and then add that form shortcode in your contact page. You can check this tutorial from Contact Form 7 http://contactform7.com/getting-started-with-contact-form-7/

    in reply to: Removing "Posted on by WeekendPick – Leave a Reply" #62104
    Sakin
    Keymaster

    @Alexander:
    1. You can add the following css in “Appearance => Theme Options => Custom CSS” box to hide entry meta in Homepage and category pages:
    .home .entry-meta, .archive .entry-meta { display: none; }

    Then to reduce the space between title and excerpt content, you can add the following css:
    .home #content .entry-title, .archive #content .entry-title { padding-bottom: 0; }

    Then if you further want to reduce it then you can change the padding top in the following css and add it Custom CSS box:
    .entry-summary { padding-top: 20px; `}

    2. You can add the following css in “Appearance => Theme Options => Custom CSS” box
    #main-slider img { width: 100%; }

    3. For that, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .page-title { font-size: 30px; line-height: 1.3em; }
    @media screen and (max-width: 940px) {
        .page-title {
            font-size: 24px;
            line-height: 1.2;
        }
    }
    @media screen and (max-width: 640px) {
        .page-title {
            font-size: 20px;
        }
    }
    in reply to: Footer widgets 2 and 4 get incorrect left margin in mobile #62081
    Sakin
    Keymaster

    @Haydie: Thanks we will fixed it in next version update.

    in reply to: Mobile Menus not working for Catch Responsive Pro #62080
    Sakin
    Keymaster

    @Harry: Please post in your site URL so that I can check in.

    in reply to: textbox on featured slider : not everywhere #62079
    Sakin
    Keymaster

    @Florence: It should work with Qtranslate-X as well.

    Sakin
    Keymaster

    @matthewseanmclachlan: Ok your logo in too large. Please crop your image to just 160px height and upload it. It’s not good for site loading. Also you need to add shadow in your log itself.

    After that, remove the following css from your custom CSS:
    #header-top { padding-top: 30px; }

    Then add the following css:

    #top-logo img {
        margin-bottom: -70px;
        max-height: 160px;
    }
    #access-top .menu {
        bottom: 10px;
        position: absolute;
        right: 0;
    }
    #access-top ul.menu a {
        font-size: 16px;
    }
    @media screen and (max-width: 940px) {
        #top-logo img {
            max-height: 150px;
        }
    }
    in reply to: WooCommerce Integration #62036
    Sakin
    Keymaster

    @afeauto: First of all the URL of your site is not opening. So, can you post in the correct URL and also let me know which theme are you using it. If you are using Catch Base pro the you don’t need to change anything on code level.

    in reply to: Removing "Posted In", "Tagged" " "Leave a Reply" #62031
    Sakin
    Keymaster

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

    2. Yes, as you have added in custom css to use font-family as “Helvetica Neue” which is not there in PC. It’s only there in Mac and apple devices. All the devices which has that font will display that other wise it will look for alternative fonts. Like Arial in your code as you can see the css:
    body, input, textarea { font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; }

    in reply to: space between header image and the primary menu #62028
    Sakin
    Keymaster

    @Thanatip: Thanks for your appreciation 🙂

    in reply to: Catch flames : Text on slider again :/ #62027
    Sakin
    Keymaster

    @Epilost: Yes, your css is working fine. The correct css is:
    #main-slider .entry-container { display: none; }

    in reply to: a few issues i'm facing #62026
    Sakin
    Keymaster

    @shawn:
    3. Yes, your css is correct. All the mobile devices below 960px will not see the footer widgets. In which mobile screen it’s not working. Let me know it. I hope you are not talking about iPad landscape which uses 1024px.

    4. Your content has overflow issue, so just add the css hack below in “Appearance => Theme Options => Custom CSS” box:
    #content .post { height: 1%; overflow: hidden; }

    Sakin
    Keymaster

    @matthewseanmclachlan:
    1. To increase the thickness of the fixed header menu, you can increase the padding top and bottom of menu items in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:
    #access-top ul.menu a { padding-top: 12px; padding-bottom: 12px; }

    2. You can change the color of Fixed header menu from “Appearance => Theme Options => Color Options => Menu Color Options => Header Top Menu Color Options”

    3. To add logo in Fixed header top, go to “Appearance => Theme Options => Fixed Header Top Options” and then check “Enable Fixed Header Top” and then upload it in “Logo in Fixed Header Top” box.

    Your photoshop moke up is quite different then the question you have asked. As per your photoshop mokeup.
    1. It’s not menu height. But you want to add padding above the menu. So, instead you need to add the following css:
    #header-top { padding-top: 30px; }

    2. Then for Fixed header top background color, it will be as below:

    #header-top {
    	background: #ea3b36;
    	background: rgba(234, 53, 54, 0.7);
    }

    Then you can change menu text color from “Appearance => Theme Options => Color Options => Menu Color Options => Header Top Menu Color Options”

    in reply to: a few issues i'm facing #61999
    Sakin
    Keymaster

    @shawn:
    1. When you add any widget in Header Top Sidebar, it will show above your header. So, you need to move that ads from Header Top Sidebar to Header Right Sidebar. So, there is no option to move Header top Sidebar. If you want to do advance coding to change the potions then you need to build child theme and edit the hooks.

    2. You css for search box looks fine. You need to replace your css:
    #header-content {
    position: relative;
    }
    #sidebar-header-right {
    position: absolute;
    top: 13.3em;
    right: 0;
    text-align: right;
    }
    with the following:

    @media screen and (min-width: 961px) {
        #header-content {
            position: relative;
        }
        #sidebar-header-right {
            bottom: -37px;
            position: absolute;
            right: 0;
            text-align: right;
        }
    }
    in reply to: space between header image and the primary menu #61998
    Sakin
    Keymaster

    @Thanatip: I see that you have uploaded your logo as Header Image. So, remove that header image. For logo, you need to go to “Appearance => Customize => Site Title & Tagline”. Then uncheck “Display Header Text” and uncheck “Check to disable logo”, then you can upload your logo by clicking on change image.

    Then you can remove your header right sidebar from “Appearance => Customize => Header Right Sidebar Options” and check in “Check to disable Header Right Sidebar”. Then you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    #site-branding, #masthead #site-header { padding: 0; }

    If you further want to reduce the spaces, then you can adjust the padding-top and padding-bottom in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    #masthead { padding-top: 20px; padding-bottom: 20px; }

    in reply to: Can't locate zip file #61997
    Sakin
    Keymaster

    @Kristin: Yes, some browser have auto zip extractor and in that case you can right click on it and click “Save Link As”. See in this screenshot https://www.pinterest.com/pin/548594798333093154/

    in reply to: Enter custom CSS #61996
    Sakin
    Keymaster

    @christiane: For Adventurous theme, please use support forum at http://catchthemes.com/support-forum/forum/adventurous-free/

    Adventurous Theme, uses default contact form from WordPress. So, to change that, you need to create child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy comments.php file to your child theme and replace
    <?php comment_form(); ?>
    with the following code, where you can replace ‘Leave a Reply’ text
    <?php comment_form(array('title_reply'=>'Leave a Reply, adventurous')); ?>

    in reply to: Alt tags for Featured Content & Features Slider #61992
    Sakin
    Keymaster

    @ginabrasseur:
    1. Looks like you are using “Image Slider” as the Slider Type. In this case, you can just go to “Appearance => Theme Options => Featured Slider => Featured Image Slider Options” and change the title for “Image Title”. This title will be used for image alt tags.

    But if you want to make it different from Title then you need to create child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy function adventurous_image_sliders() from adventurous-slider.php file to your child theme functions.php file and edit the alt tag as per your need.

    2. It’s same for Featured Content. The image take the alt tag from “Appearance => Theme Options => Featured Content => Featured Content Options”. SO, you can change the title for “Image Title”

    But if you want to make it different from Title then you need to create child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy function adventurous_homepage_featured_content() from adventurous-featured-content.php file to your child theme functions.php file and edit the alt tag as per your need.

    in reply to: Just a Thumbs-up #61952
    Sakin
    Keymaster

    @Peregrino: Thanks a lot 🙂

    in reply to: Mobile menu Is not working properly #61951
    Sakin
    Keymaster

    @kangrob: Sorry I don’t get it what you mean. What improvement are you talking about. There is no option to add title in Custom header, You can add site title from “Appearance => Header”

Viewing 20 posts - 2,821 through 2,840 (of 14,507 total)