Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@ourag: Have you customize the theme. If not then I suspect plugin conflict with the theme. Try disabling plugin and check in. I will also email you so that we can discuss about it in detail.
Sakin
Keymaster@Nancy: Can you try adding in the following.
#header-menu #access ul.menu li, #header-menu #access ul.menu li a { display: inline-block; }Sakin
Keymaster@ourag: Can you add in long content post and send me the url? As when I check in your post http://www.ourag.com/?p=318, you have post with content. If you have longer post content then only you will see Continue Reading
Sakin
Keymaster@delboorman: For header right you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
#header-right { max-width: 350px; }But for footer, you can just use 2 footer sidebars and it will be fixed. So, just remove empty text widgets from Footer Area Two in “Appearance => Widgets”
Sakin
Keymaster@ekkel: That’s strange as we haven’t change anything in that level. Maybe you have also install or update plugin recently. Try disabling plugin and test it. As I just tested with Catch Box post and it’s working fine in our side.
Sakin
Keymaster@varaani: There is no option to add text area between header image and featured post slider. For that you need to create child theme and do the customization.
Sorry I don’t understand your second question.
Sakin
Keymaster@telexesposito: I think you should better hire customizer to do advance coding. For now I am adding the code for you which replaces
<h1 class="logo-wrap">to<div class="logo-wrap"><?php /** * Get the header logo Image from theme options * * @uses header logo * @get the data value of image from theme options * @display Header Image logo * * @uses default logo if logo field on theme options is empty * * @uses set_transient and delete_transient */ function simplecatch_headerdetails() { delete_transient( 'simplecatch_headerdetails' ); global $simplecatch_options_settings; $options = $simplecatch_options_settings; if ( ( !$simplecatch_headerdetails = get_transient( 'simplecatch_headerdetails' ) ) && ( !empty( $options[ 'featured_logo_header' ] ) || empty( $options[ 'remove_site_title' ] ) || empty( $options[ 'remove_site_description' ] ) ) ) { echo '<!-- refreshing cache -->'; $simplecatch_headerdetails = '<div class="logo-wrap">'; if( empty ($options[ 'remove_header_logo' ] ) ) { $simplecatch_headerdetails .= '<div id="site-logo"><a href="'.esc_url( home_url( '/' ) ).'" title="'.esc_attr( get_bloginfo( 'name', 'display' ) ).'">'; // if not empty featured_logo_footer on theme options if ( !empty( $options[ 'featured_logo_header' ] ) ) : $simplecatch_headerdetails .= '<img src="'.esc_url( $options[ 'featured_logo_header' ] ).'" alt="'.get_bloginfo( 'name' ).'" />'; else: // if empty featured_logo_footer on theme options, display default Header Logo $simplecatch_headerdetails .='<img src="'. get_template_directory_uri().'/images/logo-head.png" alt="logo" />'; endif; $simplecatch_headerdetails .= '</a></div>'; } if( empty( $options[ 'remove_site_title' ] ) || empty( $options[ 'remove_site_description' ] ) ) { $simplecatch_headerdetails .= '<div id="site-details">'; if ( empty( $options[ 'remove_site_title' ] ) ) { $simplecatch_headerdetails .= '<h1 id="site-title"><a href="'.esc_url( home_url( '/' ) ).'" title="'.esc_attr( get_bloginfo( 'name', 'display' ) ).'">'.esc_attr( get_bloginfo( 'name', 'display' ) ).'</a></h1>'; } if ( empty( $options[ 'remove_site_description' ] ) ) { $simplecatch_headerdetails .= '<h2 id="site-description">'.esc_attr( get_bloginfo( 'description' ) ).'</h2>'; } $simplecatch_headerdetails .= '</div><!-- .site-details -->'; } $simplecatch_headerdetails .= '</div><!-- .logo-wrap -->'; set_transient( 'simplecatch_headerdetails', $simplecatch_headerdetails, 86940 ); } echo $simplecatch_headerdetails; }Sakin
KeymasterOk one more test. Can you click on admission page and check it. I want to check if this is issue when selecting current page.
Sakin
Keymaster@Nancy: You can add light box shadow which will make it look like it doesn’t shift. This is the only option.
#slider-wrap img { box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2); }Sakin
Keymaster@Nancy: Can you try adding important. Your browser is taking fixed width. It’s really strange.
#fixed-header-top ul li a, #header-menu ul.menu a, .widget_catchevolution_social_search_widget #social-search { width: auto !important; }Sakin
Keymaster@Nancy: This is really strange issue. I haven’t seen it. I checked in with chrome but don’t use Android devices. The menu item with should be flexible and shouldn’t be two line for items longer.
Can you try adding in the following CSS
#fixed-header-top ul li a, #header-menu ul.menu a, .widget_catchevolution_social_search_widget #social-search { width: auto; }Sakin
Keymaster@Nancy: That is just an effect in fade. You can try different one if you don’t like that. Also for detail customization you can Hire a customizer.
Sakin
Keymaster@Nancy: I check in your site and you are using Social Search Widget not default search Widget. Also you haven’t added updated css. Please check above.
Sakin
Keymaster@kevin.murray: This happens only in your server and it’s good to add that directly. Ok then reset the font to default and try adding in the Google Font Plugin and test it.
Sakin
Keymaster@craiginthebox: Sorry this is quite complicated and you might need to hire customizer for this.
1. First here you are trying to add home as page. So, you need to go to “Settings => Reading” and select your page to show in homepage from “Front page displays => “A static page”
2. Then you need to create front-page.php where you have to first query page and then blog-post.Sakin
Keymaster@Nancy: I though you are trying to add default search widget in mobile. So, I gave you that css. To add in the social search widget, you need to replace the previous css with the following:
@media screen and (max-width: 767px) { .sidebar-top .widget_catchevolution_social_search_widget #searchform { display: inline; float: right; margin-left: 10px; width: auto; } .widget_catchevolution_social_search_widget .social-profile { float: right; } }Sakin
Keymaster@Bouncedancer: Sorry are you trying to say Footer Widgets or Footer Copyright content.
For Footer Widgets, you can just go to “Appearance => Widgets” and drag and drop “Text Widget”, then add any text you desire.
-
AuthorPosts
