Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@BenniemanZA: So what he want? Can you be more specific about the width. For larger width theme, check our Catch Kathmandu theme http://catchthemes.com/demo/catch-kathmandu/ . You can either user Free version or pro version of it.
Sakin
Keymaster@jmb500: I just tested our site with Dancing Script Google font in “Appearance => Theme Options => Font Family Options => Headings Font Family”. It’s working fine. I suspect some other issues. I will email you to check in details.
March 13, 2014 at 5:29 pm in reply to: No featured thumbnail issue on Facebook share of homepage #21312Sakin
Keymaster@Keren: That’s cool.
Sakin
Keymaster@Nancy: Ok now let’s try to reduce the spaces by reducing the padding. The following css will change from 20 to 15. I hope this will fix it. Your browser is taking static width for the menu item and this is strange.
#header-menu ul.menu a { padding: 0 15px; }Sakin
Keymaster@craiginthebox: I told you that you are not supported to create page template. You just need 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” and then in your child theme create the file name
front-page.phpand here goes the sample code for the file.
https://gist.github.com/anonymous/05b0588726655f11c326#file-front-page-phpSakin
Keymaster@aeriformarts: It’s bit strange as it’s working on our site. Ok I will contact you in email for detail review. When you upload the media, did you check in “Link URL”, it should be “File URL” and not “None”, then you can click on “Insert Into Post”.
For detail review, please reply via email.
Sakin
Keymaster@delboorman: The following CSS will make the width of Header Search Box to 190px always.
.header-sidebar #s, .header-sidebar #s:focus { width: 190px; }Sakin
Keymaster@delboorman: You can add the following css. But you have customized site a lot so I am not 100% sure that it will work fine or not.
/* To fix the custom social icon size */ ul.social-profile li { height:33px; width:33px; } /* To the margin of Footer Widgets */ #footer-sidebar .widget { margin: 0; } /* To increase the padding of social icon */ #footer-sidebar .widget_catcheverest_social_widget { padding-top: 45px; } /* To Make social icon in float right */ #footer-sidebar ul.social-profile { float: right; } /* To Hide Site Footer Info */ #site-generator { display: none; }March 13, 2014 at 8:39 am in reply to: No featured thumbnail issue on Facebook share of homepage #21292Sakin
Keymaster@Keren: I just check in your site and see that you have setup blank image from Jetpack plugin. I found this
<meta property="og:image" content="http://wordpress.com/i/blank.jpg" />
You can test your site https://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fhis-israel.com%2FChange that image from ‘http://wordpress.com/i/blank.jpg’ to whatever you desire and will be solved. Look for setting in your JetPack plugin. As this image is from Jetpack plugin.
Sakin
Keymaster@ourag: Yes I got it and I found the problem plugin. That is “Mashshare Share Buttons” plugin. Now, your site is showing content.
Sakin
KeymasterI have already send you an email at contact[at]ourag[dot]com
Sakin
Keymaster@ourag: I don’t get it what are you trying to do with the code paste. I have also emailed you. For code sharing you can reply me there.
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.
-
AuthorPosts
