Forum Replies Created

Viewing 20 posts - 4,901 through 4,920 (of 14,497 total)
  • Author
    Posts
  • in reply to: Add a Font #51981
    Sakin
    Keymaster

    @Kim: Use Font plugin.

    in reply to: image css #51980
    Sakin
    Keymaster

    @Will: Sorry I don’t understand your question. Please post in your site URL where you have image with all these and maybe explain one sample changes that you want then I can try on with custom css.

    in reply to: Mobile menu accordian for sub-menu #51979
    Sakin
    Keymaster

    @Ronel: Yes you are really advance. Yes there is 2 calls to duplicate Header Right Menu and Secondary Menus. So, if you want two then you can make another function to duplicate the menu for secondary menu and then call it once for each menu.

    in reply to: blog comments #51978
    Sakin
    Keymaster

    @Kim: In Catch Flames Pro, you can manage comments from “Appearance => Theme Options => Comments Options”. Check there.

    in reply to: Small stuff #51976
    Sakin
    Keymaster

    @Kim:

    1. You have choose Full Width menu site and want to make it content width. It’s strange. You can the following css in “Appearance => Theme Options => Custom CSS” box:

    #header-menu #access { background-color: #fff; }
    #header-menu .menu-header-container { background-color: #e9e7e7; }

    2. You need to replace the following css from your Custom CSS box:

    @media screen and (min-width: 941px) {
    #logo-wrap { width: 68%; }
    #sidebar-header-right { width:20%; }
    }

    To this css:

    @media screen and (min-width: 941px) {
    #logo-wrap { width: 68%; }
    #sidebar-header-right { width: 300px; }
    }

    3. You need to replace the following css from your Custom CSS box:

    #secondary .widget,
    #third-sidebar .widget {
        margin-bottom: 0px;
        padding-bottom: 0px;
    }

    To this css:

    #secondary .widget, 
    #third-sidebar .widget {
        border: 1px solid #e9e7e7;
    }
    in reply to: No Header/Customization options? #51974
    Sakin
    Keymaster

    @Sakin: Thanks for your cooperation. There was issue with WordPress Importer plugin. This plugin should be used only when you are importing your datas. After you have imported, it is always recommended to deactivate it.

    in reply to: No Header/Customization options? #51960
    Sakin
    Keymaster

    @geeroads: I am able to checking with this version. Maybe I need to check in your server for detail. I will send you email.

    in reply to: remove META below posts/pages #51959
    Sakin
    Keymaster

    @kyle: Thanks for your appreciation and finding out solution. Cheers 🙂

    in reply to: Background problem #51957
    Sakin
    Keymaster

    looking at your site. I recommend width 1440px and height 900px. But it’s all you decision. Just make sure your image size is not that large. It must be less then 200kb is better.

    in reply to: Video embedding #51955
    Sakin
    Keymaster

    @Will: If you want to control the it’s size then you need to wrap with div like this
    <div style="width: 300px;">your youtube code</div>

    This is responsive theme. So, your view will be adjusted as per your content sizes. Either you need to define width like above from your content editor text mode or you need to disable responsive design from “Appearance => Theme Options => Responsive Design”

    in reply to: Blog Subscribe Box not appearing #51954
    Sakin
    Keymaster

    @Jan Deelstra: If visibility setting,
    1. when you say “Hide” is page is Blog, then it will hide only in your blog page and will show in all other pages.
    2. when you say “Show” if page is blog or post, it will show in your blog page and your article (post) page and will not show in other sections such as other pages, category and all.

    in reply to: Featured Image #51953
    Sakin
    Keymaster

    @yidamweb: It depends on your setting at “Appearance => Theme Options => Header Featured Image Options => Enable Featured Header Image”.

    in reply to: manu name #51952
    Sakin
    Keymaster

    @Simon: Looks like there is localization of script missing. So, cannot be done with language file. You need to add the following code in “Appearance => Theme Options => Webmaster Tools => Header and Footer Codes => Code to display on Footer” box:

    <script type="text/javascript">
    jQuery(window).load(function() {
    	jQuery("#access").html(function(i,t){
    	    return t.replace('Menu','Hauptmenü')
    	});
    	jQuery("#access-secondary").html(function(i,t){
    	    return t.replace('Secondary Menu','Servicemenü')
    	});
    	jQuery("#access-footer").html(function(i,t){
    	    return t.replace('Footer Menu','Infomenü')
    	});
    });
    </script>
    in reply to: remove META below posts/pages #51949
    Sakin
    Keymaster

    @kyle: It should work. Can you post in your site URL so that I can check on your custom css and site for issue.

    in reply to: Missing Webmaster Tools #51948
    Sakin
    Keymaster

    @Andreas: Catch Base Pro theme doesn’t have webmaster tools. You can install Catch Web Tools plugin and then add from there. Read more about Catch Web Tools at http://catchthemes.com/wp-plugins/catch-web-tools/

    Sakin
    Keymaster

    @Michael: You can edit that page and then in you will see Catch Kathmandu Option box below your content editor. From there you can select “Sidebar Layout” as “No sidebar, Full Width” and save changes.

    in reply to: No download link for latest version of CatchBox Pro #51936
    Sakin
    Keymaster

    @Robertf: Thanks and yes it’s 4.0. Check it here http://catchthemes.com/themes/catch-box-pro/

    in reply to: update #51934
    Sakin
    Keymaster

    @Will: Please check theme instructions at http://catchthemes.com/theme-instructions/catch-evolution-pro/ . You can download the update from your account at http://catchthemes.com/my-account/ and then you can use Catch Updater plugin http://catchthemes.com/wp-plugins/catch-updater/ to add that theme from “Appearance => Themes => Add New”. Detail instructions is there in Catch Updater plugin page.

    in reply to: Tiltle #51933
    Sakin
    Keymaster

    @valezaii: Font family option is there only in Simple Catch Pro version. So, either you need to upgrade to pro version or install plugins for that.

    in reply to: Removing header border #51932
    Sakin
    Keymaster

    @daniel12: Yes, you can remove the border image in your header by adding in the following css in “Appearance => Theme Options => Custom CSS” box:
    #header .top-bg { display: none; }

    You can remove add your own custom menu from “Appearance => Menus” and then assign that menu location as Primary menu from “Appearance => Menus => Manage Locations” For more check out custom menus at http://catchthemes.com/blog/videos-blog/video-series-creating-wordpress-custom-menus/

    If you are thinking of remove the border in the menu as well. Then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #header #mainmenu, #header #mainmenu ul li { border: none; }

    To change the background and text color of hover/active menu then you can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    #header #mainmenu ul li a:hover, 
    #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, 
    #header #mainmenu ul li:hover > a {
        background-color: #444;
        color: #fff;
    }

    Note: Looks like you are editing/adding file inside core theme folder ‘simple-catch’. You shouldn’t edit or add any files inside ‘simple-catch’ folder, as all these edits will be reverted back to original when you update the theme. So, please use child theme to edit/add codes. If you have simple editing then I recommend you to use “Appearance => Theme Options” settings.

Viewing 20 posts - 4,901 through 4,920 (of 14,497 total)