Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@tzpazifist: I don’t see twitter link missing. But I see that you have enter wrong twitter URL https://twitter.com/tzpazifist which you need to correct it from “Appearance => Customize => Social Links => Twitter”
Sakin
Keymaster@Daniel: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
.featured-content-wrap .entry-header { text-align: center; }Sakin
Keymaster@Paul: The update of Premium/Pro theme will not work like that as these theme are not hosted in WordPress.org. So, for this you need to follow instruction mentioned in theme instructions page at http://catchthemes.com/theme-instructions/catch-flames-pro/
If you want to update from WordPress Dashboard, then first you need to install plugin Catch Updater. You can download this plugin from http://catchthemes.com/wp-plugins/catch-updater/ and install it from “Plugins => Add New => Uploads”
Then download the latest version of Catch Flames Pro zip file from your account at http://catchthemes.com/my-account and then upload it from “Appearance => Themes => Add New => Uploads”
Sakin
Keymaster@Cattext:
1. In Adventurous Free theme slider, it take the image size of Width: 1600px and Height: 600px. But if the image is smaller then this, then it will take your default image. So, when you add featured image, just upload the image with the size of 1600px width and 400px height. Please post in your site URL so that I can check in.2. I don’t know what type of colored blocks are you trying to implement it. So, can you add in your site which is using Catch Kathmandu theme.
Sakin
Keymaster@sant009m: Looks like you are using Default page menu, which will add in all your published pages. So, add just selected page,category and links. You need to create custom menus from “Appearance => Menus” and add in the pages you want. Then you can assign then menu to your theme location from “Appearance => Menus => Manage Locations”.
For more about custom menu, check out http://catchthemes.com/blog/custom-menus-wordpress-themes/
Sakin
Keymaster@Dolomie: One is Header Featured Image, which you can control it from “Appearance => Customize => Header Image =>Enable Featured Header Image on” and another in Single page/post featured image, which you can control it from “Appearance => Customize => Theme Options => Layout Options => Single Page/Post Image Layout”. So you can decide which one you need to disable it.
Sakin
Keymaster@Dolomie: Sorry that option is not there. For that, you need to build child theme and then copy
fullframe_page_slider()fromfullframe-featured-slider.phpfile to your child themefunctions.phpfile. Then remove the link from the image.July 23, 2015 at 6:03 pm in reply to: Having problems adding two images on my contact us page #61391Sakin
Keymaster@Joseph: Please post in your site URL so that I can check in. When you insert image to your page, make sure that you are using appropriate image size. See this screenshot https://www.pinterest.com/pin/548594798336717816/ for image size and other option that you need to check before inserting your image in your page.
Sakin
Keymaster@Alex: Looks like you are using default page menu which will automatically add your pages in menu. In this case, you can create custom menus from “Appearance => Menus” and then add menu items as per your need. Then you can assign that menu to theme locations from “Appearance => Menus => Manage Locations”. After you create custom menu, you can also add those menu in widget areas from “Appearance => Widgets” and adding custom menu widget.
You can also check this http://catchthemes.com/blog/custom-menus-wordpress-themes/
Sakin
Keymaster@Paul: I see your site and looks like you have changed the script for header or any additional script that is conflicting with our custom header script. So, to find that, you need to track what are you recent changes. If you have added any new plugin or script then try disabling that one by one to check in the conflicting plugin. Or if you have added in any new script then try removing that.
Note: We are in state of emergency due to earthquake. So, I couldn’t reply you earlier due to power outage. Please don’t use hard language in public forum.
Sakin
Keymaster@Paul: Sorry, it cannot be done with custom css. It need to be done by building child theme and then changing hook of Header image, adding sticky header image script and css.
Sakin
Keymaster@Paul: Yes, if you have build custom menu from “Appearance => Menu” then you need to edit that menu item and check in “Open link in new window/tag” box. See this screenshot https://www.pinterest.com/pin/548594798330834738/
Sakin
Keymaster@oleymedia: For that you need to contact your Webhostinng support to change that URL. Also check in your site Cache if there is any. If you have Cache plugin install then you need to clear your cache from that plugin settings.
Then try uploading new header image and check in. Also you can use script like https://interconnectit.com/products/search-and-replace-for-wordpress-databases/ to search and replace all your old reference site url to new url.
July 23, 2015 at 11:16 am in reply to: ①Header height, ②featured slider color, 3gray line #61374Sakin
Keymaster@Kenta: Thanks for your appreciation.
1. To reduce the height above slider and below your header, you need to adjust the padding-bottom in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:#header-left { padding-bottom: 15px; } #header-right .widget .menu a { padding-bottom: 24px; }Then to reduce the height at the top of page, you need to adjust the padding-top in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:
#masthead { padding-top: 15px; }2. You can change the color code in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:
/* For slider circle color */ #controllers a { background-color: #fff; } /* For slider circle Hover-Active color */ #controllers a:hover, #controllers a.active { background-color: #7c9b30; }3. To remove grey border above the footer, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#colophon { border: none; }Sakin
Keymaster@Daniel: Sorry, when you choose Featured Content, it automatically get featured image of that page.
So, either you can hide that image by adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box
#featured-content .featured-homepage-image { display: none; }or you need to build child theme and then copy function
catchresponsive_page_content()to your child themefunctions.phpfile and then remove the following codeif ( has_post_thumbnail() ) { $catchresponsive_page_content .= ' <figure class="featured-homepage-image"> <a href="' . get_permalink() . '" title="'.the_title( '', '', false ).'"> '. get_the_post_thumbnail( $post->ID, 'catchresponsive-featured-content', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'pngfix' ) ) .' </a> </figure>'; } else { $catchresponsive_first_image = catchresponsive_get_first_image( $post->ID, 'catchresponsive-featured-content', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'pngfix' ) ); if ( '' != $catchresponsive_first_image ) { $catchresponsive_page_content .= ' <figure class="featured-homepage-image"> <a href="' . get_permalink() . '" title="'.the_title( '', '', false ).'"> '. $catchresponsive_first_image .' </a> </figure>'; } }Sakin
Keymaster@Amanda: I see that you have “Welcome” widget in your sidebar “Homepage Sidebar” which have activate Homepage sidebar which will replace your “Main Sidebar”. So, either you need to add those widget in “Homepage Sidebar” from “Appearance => Widgets” or you need to remove widgets from Homepage Sidebar so it shows Main sidebar in all pages.
Sakin
Keymaster@RevCT: You can change the font size of the menu by adjusting the font in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS” box:
.catchresponsive-nav-menu a { font-size: 14px; }Then you can hide that search toggle in menu by adding in the following css in “Appearance => Customize => Theme Options => Custom CSS” box:
#search-toggle { display: none; } -
AuthorPosts
