Forum Replies Created

Viewing 20 posts - 8,041 through 8,060 (of 14,497 total)
  • Author
    Posts
  • in reply to: Using tag #25830
    Sakin
    Keymaster

    @makomoo: The Features Post slider text will take excerpt content. The number of words is calculated from “Appearance => Theme Options => Excerpt / More Tag Settings => Excerpt length(words)”.

    But if you want to make it different for different post then you can add the “Text” in your “Excerpt” box in your post. This box text will replace the text in the post slider text. If you are confused about excerpt box then see this screenshot http://www.pinterest.com/pin/548594798330200958/

    in reply to: Fitting Pages onto One Row of Navigation Menu #25829
    Sakin
    Keymaster

    @bschell: When I check in your site in large screen it’s fine, I only see the issue in middle size screen. So, you can try adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (max-width: 1280px) {
    	.header-sidebar .widget ul.menu a, 
    	#secondary-menu ul.menu a, 
    	#footer-menu ul.menu a {
    		padding: 0 10px;
    		padding: 0 1rem;		
    	}	
    }
    in reply to: Homepage Headline, Copyright & Slider Box Colors #25828
    Sakin
    Keymaster

    @Doren: There is color options for those elements.
    Go to “Appearance => Theme Options => Color Options => Site Color Options”, there you can change
    1. Homepage Headline Background Color: for Homepage Headline background
    2. Footer Background Color: for Copyright background
    3. For Slider background color, you can change the color code in following css and add it in “Appearance => Theme Options => Custom CSS” box.
    #main-slider { background-color: #21759b; }

    in reply to: Translation of secondary & footer menu in mobile devices #25826
    Sakin
    Keymaster

    @Moellenkamp: For this we don’t have translation option. We will work on this. I see that you are using Primary Menu and Footer menu. So, to change primary and footer menu label, just change the header in the following script and add it in “Appearance => Theme Options => Webmaster Tools => Header and Footer Codes => Code to display on Footer” box.

    <script type="text/javascript">
    jQuery(window).load(function() {
    
      // Primary Menu
      jQuery('#access .menu').tinyNav({
    	active: 'current-menu-item',
    	header: 'Menu' 
      });
      
       // Footer Menu
      jQuery('#access-footer .menu').tinyNav({
    	active: 'current-menu-item',
    	header: 'Footer Menu'
      });  
    //Remove Old Primary Menu 
    jQuery( "#tinynav1" ).remove();
    //Remove Old Footer Menu
    jQuery( "#tinynav2" ).remove();  
    });
    </script>
    in reply to: Reduce gap between single blog posts #25818
    Sakin
    Keymaster

    @Moellenkamp: I am giving you all the CSS to remove the spaces. So, you can try adding in the following css elements one by one in “Appearance => Theme Options => Custom CSS” box.

    #content article {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    #content .entry-summary {
        padding: 0;
    }
    #content .entry-summary p {
        margin-bottom: 0;
    }
    in reply to: Remove Page Title (HOME) and more #25815
    Sakin
    Keymaster

    @pele: I cannot see the text “HOME and SITEUPDATES” in your site. So, bit confused. For menu titles, you can build custom menus and then assign custom menu. Where you can add your own menu items, links and label.
    Read:
    http://catchthemes.com/blog/custom-menus-wordpress-themes/
    http://en.support.wordpress.com/menus/

    in reply to: Homepage Headline, Copyright & Slider Box Colors #25814
    Sakin
    Keymaster

    @Doren: Can you post in your site URL? Also did you check in the “Appearance => Theme Options => Color Options” in your theme. There you have detail color options.

    in reply to: Social Icons #25813
    Sakin
    Keymaster

    @jhuddleston: Did you check in Theme Instruction page at http://catchthemes.com/theme-instructions/catch-kathmandu/, first you need to add social media links from “Appearance => Theme Options => Social Links”, then you can go to “Appearance => Widgets” and add it in your sidebar. For header, you can add it in Header Right Sidebar.

    in reply to: Design #25812
    Sakin
    Keymaster

    @Scholz: For menu background in mobile, you can add the following css in “Appearance => theme Options => Custom CSS” box.

    #header-menu .sb-holder {
        background-color: #823c32;
    }
    #header-menu .sb-holder a {
        color: #fff;
    }

    To reduce the free space after text in sidebar-text-widget, you can add the following css in “Appearance => theme Options => Custom CSS” box.

    .textwidget p:last-child{
        margin-bottom: 0;
    }

    About WooCommerce Sidebar we are working on it and will be fixed in version Catch Kathmandu Pro 2.1 which is schedule to release this week. Which will by default make it full width and only if you need sidebar, there will be WooCommerce Sidebar. But for now you can add the following css in “Appearance => theme Options => Custom CSS” box. Remove this after you update to 2.1
    .woocommerce #secondary { display: none; }

    in reply to: Remove space above header image and space below footer #25780
    Sakin
    Keymaster

    @Scott: I just check in your site and found issue in your footer widget closing divs and also custom css. So, it’s hard to explain here. I will email you the details.

    in reply to: padding + color menu + featured content #25777
    Sakin
    Keymaster

    @kat22: I see that you have added padding from tt-easy-google-font-styles custom css. Are you using any plugin or anything like that. I found the following css.
    p { font-family: serif; color: #ffffff; font-weight: 400; font-style: normal; line-height: 1.4; font-size: 12px; letter-spacing: 1px; padding-top: 16px; padding-bottom: 33px; }

    From the above css you need to remove padding-top: 16px; padding-bottom: 33px;

    Also about the sidebar, what do you mean by little bit. Can you be more specific.

    in reply to: Change widget layout for one site only #25737
    Sakin
    Keymaster

    @aslkin13: Sorry I don’t understand your question. Can you explain please. You can check out “Sidebar Layout Options” and “Content Layout” in our theme instruction page http://catchthemes.com/theme-instructions/catch-kathmandu/

    in reply to: Remove borders in content area #25736
    Sakin
    Keymaster

    @Moellenkamp: It would have been easier if I could check your site. For now I am giving you the css on the basis of Catch Evolution Pro theme. Add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .hentry, .widget, .no-results, #content .error404 {
        border: none;
    }
    in reply to: Remove space above header image and space below footer #25735
    Sakin
    Keymaster

    @Scott: There is not space above your header image. So, I guess you are trying to remove the white space above your site. For that you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .site { margin-top: 0; }

    in reply to: How many websites? #25732
    Sakin
    Keymaster

    @Allan: Thanks for your appreciation 🙂

    in reply to: Change slider images #25628
    Sakin
    Keymaster

    @joaobruch: Thanks and that is why I shared with you the Youtube video showing how to add Featured Image. Happy that it worked for you.

    in reply to: padding + color menu + featured content #25627
    Sakin
    Keymaster

    @kat22: You can add the following css.

    #masthead { background-color: #000; }
    #site-logo { padding-top: 0; }
    #homepage-message,
    #colophon,
    #site-generator {
        border: none;
    }
    in reply to: Lost my Navigation Panel below my header #25625
    Sakin
    Keymaster

    @bschell: Hum. How did you lost that? Did you change anything in theme files? Menu should be created from “Appearance => Menus” and then assign location, that’s it.

    in reply to: remove title #25622
    Sakin
    Keymaster

    @Sevian: Do you meant that you want to remove the Search Result page heading. If so then you can add the following css in “Appearance => Theme Options => Custom CSS” box.
    .search-results .page-header { display: none; }

    in reply to: Expand Footer Area and Reduce Space Below #25621
    Sakin
    Keymaster

    @spfitzgerald: I don’t see any importance of the following css in your Custom CSS box. So you can remove it.

    .home #supplementary { float: left; padding-top: 0;padding-bottom:0}
    #supplementary { float: left; padding-top: 0;padding-bottom:0;}
    #supplementary.four .widget-area {
    	float: left;
            width: 60%;
    	}

    After this you will see social icon in the left and your text in the right section of Footer. So, can you tell me what you want to do it. Please explain or share screenshot of what you want.

Viewing 20 posts - 8,041 through 8,060 (of 14,497 total)