Forum Replies Created

Viewing 20 posts - 8,981 through 9,000 (of 14,504 total)
  • Author
    Posts
  • in reply to: Change header/tagline font size in mobile devices #19597
    Sakin
    Keymaster

    @John: It depends on the mobile screen. You can change the size and add it in “Appearance => Theme Options => Custom CSS” box.

    /* For Mobile Screen upto 768px */
    @media screen and (max-width: 768px) {
    #site-title {
        font-size: 36px;
        line-height: 46px;
    }
    #site-description {
        font-size: 14px;
        line-height: 1.62em;
    }
    }
    in reply to: Hyperlink on the featured contents #19596
    Sakin
    Keymaster

    @yoshimi233: Go to “Appearnace => Theme Options => Homepage Settings => Homepage / Featured Content Options”.
    In Homepage featured content you will see “Link URL” where you can add link. And if you want to add it in Homepage featured content “Content Section”, then you can add HTML links like below:
    <a href="http://catchthemes.com" title="Catch Themes">Catch Themes</a> Hello.

    in reply to: Error Publishing New Pages #19595
    Sakin
    Keymaster

    @nnicholson1: Try disabling plugin one by one and check. Don’t add in. You can try deleting this page and create new one. As this is not a theme issue.

    in reply to: Change lanuage into german #19594
    Sakin
    Keymaster

    @Detlef: Ok I will email you the text file and you can send me back the translation.

    in reply to: Menu Bar – Center, Justify & Recolor #19593
    Sakin
    Keymaster

    @hipandhealthykids: Here goes the css.

    /* For Active Menu */
    #header #mainmenu ul li.current-menu-item a, 
    #header #mainmenu ul li.current-menu-parent a, 
    #header #mainmenu ul li.current_page_item a, 
    #header #mainmenu ul li.current_page_ancestor a {
        background-color: #444;
        color: #fff;
    }
    /* Sub-menu Hover Color */
    #header #mainmenu ul li ul li a:hover, 
    #header #mainmenu ul li ul li:hover > a {
    	background-color:#333;
    	color:#fff;
    }

    For more customization please use hire a customizer http://catchthemes.com/hire-customizer/

    in reply to: Menu Bar – Center, Justify & Recolor #19581
    Sakin
    Keymaster

    @hipandhealthykids: Here goes the css for hover.
    #header #mainmenu ul li:hover > a { background-color: #444; color: #fff; }

    in reply to: Change Font Color under Slider #19576
    Sakin
    Keymaster

    @hipandhealthykids: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .featured-text { color: #000; }
    .featured-text a.readmore { #000; }
    in reply to: Show path #19575
    Sakin
    Keymaster

    @Micha: Can you try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #header-menu .menu .current-page-ancestor > a { background-color: #000; }

    in reply to: Move Site Description under Logo #19573
    Sakin
    Keymaster

    @hipandhealthykids: You can decrease the margin top of the menu. Adjust as per you need and add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #header #mainmenu { margin-top: 40px; }

    in reply to: Header Background Changing from Screen to Screen #19572
    Sakin
    Keymaster

    @hipandhealthykids: background-image css will not take other properties, only background will take all the other properties.

    Also about the images, your site couldn’t fine one image. That is http://www.hipandhealthykid.com/wp-content/uploads/2014/HHKWallpaperOtherPages.png and it can only fine http://www.hipandhealthykid.com/wp-content/uploads/2014/HHKWallpaper.png . So, check your image url and add it properly.

    in reply to: Change lanuage into german #19570
    Sakin
    Keymaster

    @Detlef: Simple Catch Pro is currently translated in Polish and Dutch languages. If you want to contribute in Translating into Germany. Then you can do that. You just need to download poedit software from poedit.net and then use simplecatch-pro.pot file to generate de_DE.mo and de_DE.po files.

    in reply to: Show path #19567
    Sakin
    Keymaster

    @Micha: I don’t see the levels of menu in your site. You can see levels of menu in our demo page http://catchthemes.com/demo/catch-everest/. You can create your custom menu from “Appearance => Menus”. For more detail check out http://catchthemes.com/blog/custom-menus-wordpress-themes/

    in reply to: Show path #19564
    Sakin
    Keymaster

    @Micha: You can show path underneath the menu by adding in “Breadcrumb NavXT” plugin.

    Sorry about your menu highlight I am bit confused. We do have active menu highlighted even in the sub menus. Can you explain in reference to your site URL?

    in reply to: BackWup not working anymore #19563
    Sakin
    Keymaster

    @Sarah Althaus: Sorry this is plugin issues and not the theme issues. So, please post in the BackWPup plugin support forum.

    in reply to: Header Background Changing from Screen to Screen #19562
    Sakin
    Keymaster

    @hipandhealthykids: You just need to add extra class .home. See the following CSS.
    .home #header { background-image: url("/wp-content/uploads/2014/HHKWallpaper.png"); }

    in reply to: Menu Bar – Center, Justify & Recolor #19561
    Sakin
    Keymaster

    @hipandhealthykids: Our free version doesn’t have color options in Theme Options panel but if you upgrade to pro version then you will get that feature.

    For menu stretch, you can increase the menu items padding and add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #header #mainmenu ul li a { padding: 0 15px; }

    /* Menu Background Color */
    #header #mainmenu { background-color: #fff; }
    /* Menu Text Color */
    #header #mainmenu ul li a { color: #444; }
    /* Sub-Menu Background Color */
    #header #mainmenu ul li ul { background-color: #444; }
    /* Sub-Menu Text Color */
    #header #mainmenu ul li ul li a { color: #999; }
    in reply to: Move Site Description under Logo #19560
    Sakin
    Keymaster

    @hipandhealthykids: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #site-details { clear: both; }

    in reply to: Advertisement in sidebar #19559
    Sakin
    Keymaster

    @Micha: It’s a responsive design theme. So, do adjust the width we need to consider it. Can you try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 961px) {
    #primary { width: 710px; }
    #secondary { width: 160px; }
    }
    @media screen and (min-width: 1190px) {
    #primary { width: 830px; }
    }
    @media screen and (max-width: 1060px) {
    #primary { width: 660px; }
    }
    in reply to: Catch Box Pro purchased #19547
    Sakin
    Keymaster

    @GJ: If you have purchased through “Buy Now: Manual Activation” then you will get email from our sales team after they activate your account. If you still don’t get it then you can contact theme directly at http://catchthemes.com/contact-us

    in reply to: Menu Hover and Active Background Image #19546
    Sakin
    Keymaster

    @markpysher: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    /* For Hover */
    #header-menu ul.menu li:hover > a { 
        background-image: url("http://www.grandbeachinnmaine.com/wp-content/uploads/2014/01/navback.jpg"); 
    }
    /* For Active */
    #header-menu .menu .current-menu-item > a,
    #header-menu .menu .current-menu-ancestor > a,
    #header-menu .menu .current_page_item > a,
    #header-menu .menu .current_page_ancestor > a {
        background-image: url("http://www.grandbeachinnmaine.com/wp-content/uploads/2014/01/navback.jpg");
    }
Viewing 20 posts - 8,981 through 9,000 (of 14,504 total)