Forum Replies Created
-
AuthorPosts
-
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; }Sakin
Keymaster@svr: There is no option to make two pages blog. So, either you need to make your homepage to show latest posts or you can assign any other page as blog from “Appearance => Customize => Static Front Page”. Then you can select particular categories from “Appearance => Theme Options => Homepage/Frontpage Category Settings”
But if you want another pages to show blog as well. Then you need to build child theme and then create page template to show blog with particular categories. For that, you can create php file like
template-selected-category.phpand then copy code frompage-blog.phpthen change then change template name and add category_name. See the example code as below, where I change template name to Selected Categories Template and added category staff and news.Template Name: Selected Categories Template $blog_query = new WP_Query( array( 'category_name' => 'staff,news', 'post_type' => 'post', 'paged' => $paged ) );Note: You can read more about child theme at http://catchthemes.com/blog/create-child-theme-wordpress/ and WP_Query at https://codex.wordpress.org/Class_Reference/WP_Query
Sakin
Keymaster@Sarah: For page and post, the preview image will be your Featured Image. So, add featured images in your pages and posts. See this http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/
Then you can use the plugin like “WordPress SEO by Yoast” which allows you to add in image for archive pages. This facebook used open graph which is supported by this plugin.
After you make these changes, you can go to https://developers.facebook.com/tools/debug/ and test your site.
Sakin
Keymaster@Cesar R: Sorry this is not directly related to theme and I am not aware of script that you are using to support your code. Your Tactics should have responsive embed code then it will be fine. But when I check your page, it is using fixed height and width embed code. So, you need to get help from that code provider.
Sakin
Keymaster@roche5000: Excerpt/Summary will now show link.
To hide all and just show date in meta, you can add the following css in “Appearance => Theme Options => Custom CSS” Box:
.post-by .no-padding-left, .post-by .last { display: none; } #main #content ul.post-by li { padding: 0; }Sakin
Keymaster@Paul: Sorry I am bit confused. I don’t see any issue in the layout.
you can replace your current custom css:/* For Large Screen */ #primary { width: 750px; } #secondary { width: 180px; } @media screen and (max-width: 1224px) { #primary { width: 750px; } #secondary { width: 180px; } } @media screen and (max-width: 1060px) { #primary { width: 750px; } #secondary { width: 180px; } } @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) { #primary { width: 750px; } #secondary { width: 180px; } } @media screen and (max-width: 960px) { #primary, #secondary { width: 100%; } }With the following css:
@media screen and (min-width: 961px) { #primary { width: 670px; } #secondary { width: 180px; } } @media screen and (min-width: 991px) { #primary { width: 720px; } } @media screen and (min-width: 1024px) { #primary { width: 750px; } }Sakin
Keymaster@m4rkym: Three Columns ( Equal Primary and Secondary Sidebars ) layout option is there only in Catch Base Pro theme. See this demo http://catchthemes.com/demo/catch-base/layout-options/three-columns-equal-primary-secondary-sidebar/
But in Free version, you need to do it manually using custom css. So, try adding following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
@media screen and (min-width: 991px) { .three-columns #content_sidebar_wrap { width: 690px; } .three-columns #content_sidebar_wrap #main { width: 450px; } .three-columns .sidebar-primary, .three-columns .sidebar-secondary { width: 240px; } } @media screen and (min-width: 1101px) { .three-columns #content_sidebar_wrap { width: 735px; } .three-columns #content_sidebar_wrap #main { width: 460px; } .three-columns .sidebar-primary, .three-columns .sidebar-secondary { width: 275px; } } @media screen and (min-width: 1153px) { .three-columns #content_sidebar_wrap { width: 760px; } .three-columns #content_sidebar_wrap #main { width: 460px; } .three-columns .sidebar-primary, .three-columns .sidebar-secondary { width: 300px; } } @media screen and (min-width: 1281px) { .three-columns #content_sidebar_wrap { width: 820px; } .three-columns #content_sidebar_wrap #main { width: 480px; } .three-columns .sidebar-primary, .three-columns .sidebar-secondary { width: 340px; } } -
AuthorPosts
