Forum Replies Created

Viewing 20 posts - 4,221 through 4,240 (of 14,497 total)
  • Author
    Posts
  • in reply to: Link Color #55437
    Sakin
    Keymaster

    @rickm813: In the following css, you can change the color code as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    a { color: #1b8be0; }

    in reply to: change menu font/size #55435
    Sakin
    Keymaster

    @Katherine: First of all to change the font family to Oswald. You need to go to “Appearance => Theme Options => Font Family Options” and set any one element Font as Oswald. Then you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #header-menu ul.menu a {
        color: #fff;
        font-family: "Oswald",sans-serif;
        font-size: 20px;
        text-transform: uppercase;
    }
    in reply to: Want to curtail Featured Content #55415
    Sakin
    Keymaster

    @Maria: There will be update releasing today which will fix this issue. Actually it is supposed to list excerpt text only. Also to let you know you can control excerpt content using more tag <!--more-->. Just insert this <!--more--> in your page content which will split content and the content above this more tag will show in your featured content. For more about more tag, Click here

    in reply to: remove space above header #55389
    Sakin
    Keymaster

    @Katherine: Cool that you found it 🙂

    in reply to: Can't get sidebar on blog page only #55386
    Sakin
    Keymaster

    @Six Mile Sourdough: This is strange, we need to look at this in detail and let you know it

    in reply to: Custom Menu Widget Colors in Header Right #55385
    Sakin
    Keymaster

    @David: It should work as I just check in your site and it’s working. You can add in and let me know it. You need to refresh your browser after you make the changes.

    in reply to: Excerpt On Slider #55384
    Sakin
    Keymaster

    @rickm813: You either need to activate old theme and delete it and then active our theme. Or you need to to add Excerpt by building child theme and delete it.

    in reply to: Can't get sidebar on blog page only #55332
    Sakin
    Keymaster

    @Six Mile Sourdough: Is that for new page or old page. Can you create new page and try to change the layout. If this problem still exist then let me know it and I will check in your server.

    in reply to: Search Box #55331
    Sakin
    Keymaster

    @Kim: For that you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #third-sidebar .widget_custom_menu_wizard .current-menu-item { font-weight: bold; }

    in reply to: Custom Menu Widget Colors in Header Right #55330
    Sakin
    Keymaster

    @David: Since you are using widget menu in your header right sidebar, you can replace your
    #header-menu ul.menu a, .sidebar-top .widget_nav_menu ul.menu a, #colophon #access-footer ul.menu a { }

    With the following:
    .sidebar-top .widget_nav_menu ul.menu a { }

    in reply to: Social icons not appearing in all browsers #55308
    Sakin
    Keymaster

    @B1ngle: I checked in your site in Firefox, Chrome, Safari and IE. In all browser Social Icons are showing in your sidebar.

    in reply to: Impressum (Legal Notice) in Footer #55307
    Sakin
    Keymaster

    @Sarah: Thanks for your appreciation 🙂

    in reply to: Impressum (Legal Notice) in Footer #55304
    Sakin
    Keymaster

    @Sarah: Thanks page “Impressum” that you are getting in header is from Default Page menu. I mean that you can replace that with your custom menu. So, in your custom menu don’t add that page. I already gave code to add in footer.

    But if don’t want to use custom menu and stick with default page menu then you can add the following css in “Appearance => Theme Options => Custom CSS” box to hide it.
    #access .page-item-131 { display: none; }

    in reply to: featured slider title & content position #55300
    Sakin
    Keymaster

    @Kristin: Thanks for your appreciation 🙂

    in reply to: Impressum (Legal Notice) in Footer #55298
    Sakin
    Keymaster

    @Sarah: About the header. You can create Custom Menu from “Appearance => Menus” and add the pages, category and links that you want and save menu. After that you need to assign menu location as Primary Menu from “Appearance => Menus => Manage Locations”. In this way you can just add in the pages that you want. For more about custom menu, check this http://catchthemes.com/blog/custom-menus-wordpress-themes/

    in reply to: featured slider title & content position #55297
    Sakin
    Keymaster

    @Kristin: In Catch Kathmandu Pro theme, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #main-slider  .entry-container {
        left: auto;
        right: 50px;
    }
    @media screen and (max-width: 480px) {
        #main-slider  .entry-container {
            right: auto;
        }
    }
    in reply to: Excerpt On Slider #55295
    Sakin
    Keymaster

    @rickm813: your old theme must have added in page excerpt box. If you want to add it in this theme as well then build child theme, you can download it from http://catchthemes.com/blog/create-child-theme-wordpress/ and add the following code in your child theme functions.php file.

    add_action( 'init', 'catchresponsive_add_excerpts_to_pages' );
    function catchresponsive_add_excerpts_to_pages() {
         add_post_type_support( 'page', 'excerpt' );
    }
    in reply to: Can't change background color #55294
    Sakin
    Keymaster

    @Emmelie Brownlee: Can you post in your site URL? Also explain what’s happening to your site.

    in reply to: Custom Menu Widget Colors in Header Right #55291
    Sakin
    Keymaster

    @David: Sorry I don’t get it what you mean here by
    For other future readers, was there a different way to affect these changes?

    in reply to: Impressum (Legal Notice) in Footer #55290
    Sakin
    Keymaster

    @Sarah: where in the footer you want to add in. If you want to add that in Footer site info section then go to “Appearance => Theme Options => Footer Options => Footer Editor” box, you can add just after All Rights Reserved. as below:
    <a href="http://rapunzel-will-raus.ch/impressum/" title="Impressum">Impressum</a>

Viewing 20 posts - 4,221 through 4,240 (of 14,497 total)