Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@bobmacoy: Which theme are you using it. You have posted in Catch Box Free Theme forum and yes if you have activate Catch Box theme then you will have that Header.
Sakin
Keymaster@Sevian: Removing that will make the site look odd. As we need some gap between this. But yes you can make it whole white so it doesn’t look like gap
#main .wrapper { background-color: #fff; } #secondary .widget { border: none; }So bit confused…
Sakin
Keymaster@Onyinye: Oh Sorry this is not the way we design so it’s but complicated and if you want that then you need to consider hiring customizer.
But I have one option, that is simply remove the border and center the menu by adding in the following css in “Appearance => Theme Options => Custom CSS”
#access ul { text-align: center; } #access ul li { border: none; display: inline-block; float: none;} #access ul li a { display: block; float: none; } #access ul li ul li { display: block; float: left; text-align: left; width: 100%; } #access ul li.default-menu { display: none; } #access ul.sb-options li { text-align: left; }Sakin
Keymaster@kk078914: Thanks you found it. It’s a strange plugin when it needs to add whole bootstrap css. Strange.
Sakin
Keymaster@kk078914: I also don’t know about that. Maybe it come from one of your plugins. Try checking in by disabling your plugin one by one.
Sakin
Keymaster@dfwrgjeff: Yes, I found issue in your custom css where you miss closing
}after your following css.#secondary-menu ul.menu { list-style: none; text-align: left;This needs to be like following:
#secondary-menu ul.menu { list-style: none; text-align: left; }Then you can add the code that I gave you.
.page .entry-header { display: none; }Sakin
Keymaster@pennsavage: But the color ones are from Sharethis script and we haven’t added this our theme. Who did this site for your. Looks like he/she have added that script in your site. So, we cannot do anything to remove that. So, search for that customize code. Looks like you have that code in
content-single.phpfile. Compare you code with http://themes.svn.wordpress.org/catch-evolution/1.8.2/content-single.php file.If you cannot find it then you need to delete your customized theme and install the fresh one. We only have social icons in that you have in Header Right Sidebar. Not on any post for share.
Sakin
Keymaster@Sevian: Still confused. Maybe you can share with me your design that you wanted to accomplish. Upload the screenshot in your site or any photo sharing site and post in your image URL here.
Sakin
Keymaster@probogus: Which theme are you checking in? Catch Everest Pro, Catch Kathmandu Pro and Catch Evolution Pro themes are WPML plugin compatible.
Sakin
Keymaster@kk078914: This is not because of theme update. If you have theme update only then it will look like our demo page http://catchthemes.com/demo/catch-everest/
But I see that there is conflicting CSS added in you site. For example http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css?ver=3.1.1. Why are you add Bootstrap. Remove this and it will work fine.
Sakin
KeymasterHi Ian,
That link also doesn’t work. I am asking for your site domain URL.
Regards,
SakinSakin
Keymaster@pennsavage: To remove that, first you need to build child theme of Catch Evolution Theme. Then you need to copy
content-single.phpfile in your child theme and edit the line no 27 where you will find the following code.
$utility_text = __( 'This entry was posted in %1$s and tagged %2$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'catchevolution' );Change this to
$utility_text = __( 'This entry was posted in %1$s and tagged %2$s', 'catchevolution' );For details about build child theme. Read this http://catchthemes.com/blog/create-child-theme-wordpress/
Sakin
Keymaster@pennsavage: I just check in your site and see that post the social media icons in your posts are not from our theme. One I found that you have added from “Simple Share Buttons Adder” plugin and another from Sharethis script.
Sakin
Keymaster@karolinaannajarosz: We are in the process of adding this feature. So, you will have to wait for sometime to complete our development and testing.
Sakin
Keymaster@bobmacoy: That is not a problem.
1. Just for to “Appearance => Header”. Then in “Select Image” you can just click on “Browse” and upload your image. After you upload you will get “Crop Header Image” as shown in this screenshot http://www.pinterest.com/pin/548594798331307420/. Then crop the desire area or select the full image and then click on “Crop and Publish”
2. Then in “Header Text” just uncheck “Show header text with your image” and click on “Save Changes”.Sakin
Keymaster@Keren: This is quite interesting feature that you are asking for. I am sorry I don’t think there is plugin for this. Try searching at http://wordpress.org/plugins/
Sakin
Keymaster@rgamlam: For reducing the widget margin and removing the border inside your about widget. You can add the following css in “Appearance => Theme Options => Custom CSS” box.
#secondary .widget { margin-bottom: 25px; margin-bottom: 2.5rem; } .jetpack-image-container .wp-caption { border: none; }But for combining widgets is bit problematic. I have added the following css which you can try adding in. If this works then it’s great. Otherwise, sorry you need to hire customizer to do this.
#secondary { border: 1px solid #eee; } #secondary .widget { border: none; box-shadow: none; }Sakin
KeymasterHi Alain,
There is two options.
1. Either you can change the color by adding in the following css in “Appearance => Theme Options => Custom CSS” box..site {background-color: #d8f0fc;} #featured-post { border: none; }2. Or you can remove the margin by adding in the following css in “Appearance => Theme Options => Custom CSS” box.
#featured-post { border: none; margin-bottom: 0; }Sakin
Keymaster@probogus:
1. OH you are changing from Full Width to 1200px center fit. You can add the following css in “Appearance => Theme Options => Custom CSS” box and it will adjust it..site { display: block; margin: 0 auto; width: 1200px; } @media screen and (max-width: 1224px) { .site { width: 1024px;} } @media screen and (max-width: 1060px) { .site { width: 900px;} } @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) { .site { width: 1024px;} } @media screen and (max-width: 960px) { .site { width: 700px;} } @media screen and (max-width: 767px) { .site { width: 380px;} } @media only screen and (min-width: 480px) and (max-width: 767px) { .site { width: 440px;} } @media screen and (max-width: 479px) { .site { width: 300px;} } @media screen and (max-width: 320px) { .site { width: 100%;} }2. You can change the color code as per you need in the following css where I have change to white color code and add it in “Appearance => Theme Options => Custom CSS” box.
#site-generator { background-color: #fff; }May 26, 2014 at 10:55 am in reply to: Button colour change & how to centre content in sidebar #32425 -
AuthorPosts
