Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Aleao: Oh you are talking about the Logo and Site Tile, it will link to your homepage by default and there is not option to change that. If you want to change that then you need to know about WordPress Child Theme Coding or hire customizer. As for this, first you need to build child theme, read this for child them http://catchthemes.com/blog/create-child-theme-wordpress/
Then you need to copy the functions
catchkathmandu_header_image()from Catch Everest themecustom-header.phpfile and add it in your child theme functions.php and edit the link as per your need.December 29, 2014 at 10:15 pm in reply to: Lower right header menu & use posts page as front page #49419Sakin
Keymaster@Kim: Try adding in the following css in “Appearance => Theme Options => Custom CSS” box:
#secondary .widget .social-profile { text-align: center; } #secondary .social-profile ul li { display: inline-block; float: none; }Sakin
Keymaster@Jason: I check in your site and see that that comment is not from our theme. It’s from our plugin with you have installed. I see that you have disable comment in this post. It is from plugin “facebook comments”. Remove that and it will be fine or ask in that plugin support why it adds above.
Sakin
Keymaster@Kim: Sorry this is not possible. I will can check in if you have any issue. Checking all these custom css in not possible.
Sakin
Keymaster@Martijn: That option is not there in option panel. For this you need to do custom coding. This is beyond our free support. So, you need to hire customizer to work on it. I can tell you the process. First, you need to build child theme. You can reach about child then and also download sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/ and then in your child theme functions.php file. Then add in the text above and below using function and hook. For example to add text above and below slider, you can add the following code in your the child them functions.php file:
/** * This function to display text above slider */ function catchevolution_text_above_sliders() { ?> Add in the Text as per your need here <?php } add_action( 'catchevolution_content', 'catchevolution_text_above_slider', 5 ); /** * This function to display text below slider */ function catchevolution_text_below_sliders() { ?> Add in the Text as per your need here <?php } add_action( 'catchevolution_content', 'catchevolution_text_below_slider', 15 );Sakin
Keymaster@mgunes: The browser title is from your site title and page title. So, please check that and also you can modify the title to custom one by installing WordPress SEO by Yoast Plugin.
To change the menu to lowercase, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#header-menu ul.menu a { text-transform: lowercase; }Sakin
Keymaster@Jason: Can you send me the URL where you have added nextpage shortcode. As the pagination should be there before post footer meta. See this demo http://catchthemes.com/demo/simplecatch-pro/aciform/layout-test/
Sakin
Keymaster@talkleft: I see that you have added your logo as Header Image. That is nice but it’s better you remove that image from Header Image and then upload it as Logo from “Appearance => Customize => Site Title & Tagline”. Then add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#masthead, #masthead .wrapper, #site-branding { padding: 0; }But if you want to keep your image as header image as it is now and remove the spaces, then you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#masthead { display: none; }Sakin
Keymaster@billcb: You can add the following css in “Appearance => Theme Options => Custom CSS” box to make your header nice.
#header .logo-wrap { margin-top: 30px; width: 694px; } #site-details { padding-top: 25px; } #header .social-search { margin-top: 55px; width: 244px; } #header .social-search form.searchform input { width: 140px; } #site-title { font-size: 36px; } #site-description { font-size: 13px; } #header #mainmenu { margin-top: 30px; }Sakin
Keymaster@dnieuwenhuis: You can add the following css in “Appearance => Theme Options => Custom CSS” box to remove border:
.hentry, .widget, .no-results, #author-info, #content .error404 { background-color: #fff; border: medium none; position: relative; }Sakin
Keymaster@talkleft:
1. About the spaces below you header. I see that you have add blank custom menu in Secondary menu. So, go to “Appearance => Menus => Manage Location” and remove your blank menu from “Secondary Menu”. It should be left as โ Select a Menu โ2. Thanks it’s solved
3. You can change Favicon from “Appearance => Customize => Theme Options => Icon Options”
For more, you can check out theme instructions page at http://catchthemes.com/theme-instructions/catch-base-pro/
Thanks for using Catch Base Pro and Happy Holidays… Cheers ๐
Sakin
Keymaster@adamsh: To disable primary menu. I have already given you the instruction above. Either you can disable the Header Right Sidebar section which has primary menu or just add widget to header right sidebar with will replace the primary menu.
Sakin
Keymaster@adamsh: Ok if you want to disable header right section. Then go to “Appearance => Theme Options => Header Options” then check option “Disable Header Right Sidebar” and save changes.
Sakin
Keymaster@Roberto: It’s really simple, Just go to “Appearance => Menus” from your WordPress Dashboard. Create menu and assign pages/posts/links as per your need to your custom menu. Then you need to assign that menu location to Primary Menu from “Appearance => Menus => Edit Locations”. So, in this way you will only have the pages that you want to show in menu. You have full control of your menu items.
See this screencast for more details http://catchthemes.com/blog/videos-blog/video-series-creating-wordpress-custom-menus/
Sakin
Keymaster@adamsh: I don’t know what you are talking about. As I only see secondary menu in your site woodyaalon.com/en/ . I think you have already disable Primary menu. Then I don’t understand what you mean by diable it complitly.
Sakin
KeymasterIf you want black arrow for white screen then you can add the following:
#main ul { list-style: outside url("http://1stattack.com/wp-content/themes/simple-catch-pro/images/ul-bg.png") disc; } -
AuthorPosts
