Forum Replies Created

Viewing 20 posts - 5,381 through 5,400 (of 14,497 total)
  • Author
    Posts
  • in reply to: Sticky 2nd Nav Menu #49815
    Sakin
    Keymaster

    @John U: Either you need to remove import from your child theme style.css or remove wp_enqueue_style() from your child theme functions.php file. It’s not good to keep it both.

    in reply to: Custom Header Image for Logo #49786
    Sakin
    Keymaster

    @lsdinc: Thanks for your appreciation 🙂

    in reply to: Blog page set up #49785
    Sakin
    Keymaster

    @lorencowka: Again this can be done by installing plugin like “Sociable” or another.

    in reply to: as removing the text… #49784
    Sakin
    Keymaster

    @alexmo: Thanks for sharing. There is correction in Custom CSS for your site. So, replace the custom css:
    #form-allowed-tags { display: none; }

    With the following css:
    #respond .form-allowed-tags { display: none; }

    in reply to: Can't link Featured Post Slider images to certain url #49783
    Sakin
    Keymaster

    @amandamarie0808: I see that you are using Catch Kathmandu Free theme. Which only have option to use “Post Slider or Category Slider”, these two slider are created to highlight your post in the slider. It takes your post title, excerpt and featured image and will link to post.

    To change that to page, you need to Page Slider and to link to any pages/custom URL then you need to use Featured Image Slider. But the option to use Page or Image slider is only there in Catch Kathmandu Pro version. So, your solution will be to upgrade to pro version.

    in reply to: Slider text and scroll arrows appear as white box #49782
    Sakin
    Keymaster

    @Shawn: I don’t see any issue. Which version of IE and Firefox are you using it. Can you upload screenshot in your site or any photo-sharing site and send me the link to screenshot. Then I can check in more.

    in reply to: Primary Menu Not Accesible on Mobile #49781
    Sakin
    Keymaster

    @Jonathan: It’s because you have following css in your custom css box:
    #header-content { display: none; }

    Also I don’t understand why you added in the following css:

    @media screen and (min-width: 961px) {
    }

    Remove both the css and then you will get menu back. Further, if you don’t like header in the desktop version then you then you can add the following css instead.

    #logo-wrap, #sidebar-header-right { display: none; }
    @media screen and (min-width: 981px) {	
    #header-content { padding: 0; }
    }
    in reply to: Changing Colors Menu #49778
    Sakin
    Keymaster

    @Epheistos: For minimal style changes, then you can use Custom CSS box at “Appearance => Theme Options => Custom CSS” box. You need to build child theme only when you need advance customization of styles and functions.

    You can simply change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    //Border Color
    #branding ul.menu li 
        border-color: 1b4266;
    }
    //Menu background and text color
    #branding #access, #branding ul.menu ul a {
        background: none #1b4266;
        color: #fff;
    }
    //Menu Hover background and text color
    #branding ul.menu li:hover > a,
    #branding ul.menu a:focus {
    	background: none #286298; 
    	color: #fff;
    }
    in reply to: main menu #49777
    Sakin
    Keymaster

    @paul: Do you mean that you just want to hide your menu in your homepage and show it in all other pages then you can add in the following css in “Appearance => Theme Options => Custom CSS” box:

    .home #access { display: none; }

    in reply to: Mp3's on my Site Disappeared #49776
    Sakin
    Keymaster

    @Kevin: Sorry I don’t know which shortcode are you using it. Are you using any plugin for MP3s.

    in reply to: Sticky 2nd Nav Menu #49771
    Sakin
    Keymaster

    @John U: Other CSS are automatically added and the parent style.css is imported in style.css of child theme. You will see the following CSS in your child theme style.css

    /* =Import Adventurous Pro CSS
    -------------------------------------------------------------- */
    
    @import url("../adventurous-pro/style.css");

    So, you don’t need to add adventurous-pro_enqueue_scripts_styles() function in your child theme functions.php file. Also in your //remove default secondary menu, you have done add_action and it should be as remove_action. Your child theme functions.php file should be as.

    in reply to: Custom Header Image for Logo #49745
    Sakin
    Keymaster

    @lsdinc: Yes, there are additional options in Pro version as Pro version is advance version of Free one. See more details about additional features and instructions for pro version at http://catchthemes.com/theme-instructions/catch-evolution-pro/

    in reply to: My Main Menu disappears after scrolling down #49744
    Sakin
    Keymaster

    @Daniel: I check in your site and your menu is working fine. Your Black menu is not a static fixed menu to do with your header. It get hidden when you scroll down and will come back when you scroll up.

    in reply to: Custom Header Image for Logo #49703
    Sakin
    Keymaster

    @lsdinc: Hum I am confused. There in two layout option without sidebar. One is no sidebar full with http://catchthemes.com/demo/catch-evolution/no-sidebar-full-width/ and another is No sidebar only http://catchthemes.com/demo/catch-evolution/no-sidebar/.
    So, what are you trying to do it. Maybe share screenshot of your requirement.

    in reply to: Custom Header Image for Logo #49701
    Sakin
    Keymaster

    @lsdinc: If you don’t need any side widgets. Then you can change the site layout to “No Sidebar, Full Content” from “Appearance => Theme Options => Layout Options”. If you just want to change to full width layout to only few pages/posts, then you can edit that pages/posts and you will see Catch Evolution options below your page/post editor and there you can change the layout.

    in reply to: as removing the text… #49700
    Sakin
    Keymaster

    @alexmo: Please add that CSS and send me your site URL then I will check in what’s wrong there.

    in reply to: Remove Featured Image on Posts #49698
    Sakin
    Keymaster

    @glenda: Nice and child themes is a great way to customize the theme. Cheers 🙂

    Sakin
    Keymaster

    @arun: Sorry I don’t get it what you mean.

    in reply to: Change menu title on mobile devices? #49694
    Sakin
    Keymaster

    @Nijn: In the following code, you can edit your label where I have type in Type in your label here and then add it in “Appearance => Theme Options => Webmaster Tools => Header and Footer Codes => Code to display on Header” box:

    <script type="text/javascript">
    jQuery(window).load(function() {
    
    //Remove Fixed Top Menu 
    jQuery( "#tinynav1" ).remove();
    
      // Adding Fixed top Menu with new header
      jQuery('#access-top .menu').tinyNav({
    	active: 'current-menu-item',
    	header: 'Type in your label here' 
      });
    
    });
    </script>
    in reply to: Change menu title on mobile devices? #49693
    Sakin
    Keymaster

    @prehabexercises: Sorry I don’t get it what you mean. Can you explain more in reference with your site URL.

Viewing 20 posts - 5,381 through 5,400 (of 14,497 total)