Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Chris: Can you change any font from your Theme Options and check it if that is the issue of google font as per the forum you told.
Sakin
Keymaster@mattlambert: So strange, I just check in both of your site in my iPhone5. It’s displaying same.
Sakin
Keymaster@Ghettofab75: This is not Simple Catch Forum. For Simple Catch please post in http://catchthemes.com/support-forum/forum/simple-catch-public/
Sakin
Keymaster@stickerd: Always keep your Theme Updated as we fixed issues in updates and I answer all the queries on the basis of latest version.
1. How do you change the color on the menu ( what CSS code?)
— Just upgrade to Catch Everest Pro theme where you have color picker in Theme Options panel where you can just change the color in a click.
— For free version you need to add the following css in “Custom CSS” box in Theme Options panel. Change the color code as per you need.
#header-menu { background-color: #45c3d2; }
#header-menu .menu .current-menu-item > a, #header-menu .menu .current-menu-ancestor > a, #header-menu .menu .current_page_item > a, #header-menu .menu .current_page_ancestor > a, #colophon .menu .current-menu-item a { background-color: #0F4950; }
#header-menu ul.menu li:hover > a, #header-menu ul.menu a:focus, #colophon #access-footer ul.menu a:hover, #colophon #access-footer ul.menu a:focus { background-color: #0F4950; }
#header-menu ul.menu ul a { background-color: #45C3D2; }
2. I added some code that I found to reduce the white space between the logo and top. But want the amount of white space below the logo to be similar. What CSS code do I need?
— Add the following css in “Custom CSS” box in Theme Options panel.
#hgroup-wrap { padding-bottom: 8px; }3. I noticed on my IPad, that the media buttons and logo cause the header to move and be larger. I thought they would adjust and be responsive. How do I correct for that?
— Yes, that is when you have larger header image. As we don’t resize the media icons. So, only the header gets resize.4. I am having trouble sizing slider images so they are all uniform. Right now they are slightly off and the pictures jump up and down. I know that the directions said 1140 x 450 pixels for slider pics. But Even when I do that, it does not work ( using GIMP). This is my biggest frustration, with this theme. Any suggestions?
— See this http://catchthemes.com/theme-instructions/catch-everest/. The image size has to be more than or at least equal to Width: 1140px and Height: 450px.
I just check in your
first image http://www.decodingdyslexiaor.org/wp-content/uploads/2013/03/one-in-5_1122x402.jpg which is width 1122px and height 402
second image http://www.decodingdyslexiaor.org/wp-content/uploads/2013/04/stockvault-teacher1297561-1136×416.jpg which is width 1136 and height 416
third image http://www.decodingdyslexiaor.org/wp-content/uploads/2013/03/rolling-ball_GIMP.png which is width 1031 and height 380.
Make all image equal and then it will be fine.5. Since I am the only person creating post, I would not like my name on each post. How do I remove that option?
— add the following css in “Custom CSS” box in Theme Options panel to hide it.
.entry-meta .by-author { display: none; }Also please put back credit link in your site. Don’t hide it if you want to support free theme. If you want to remove that please upgrade to Catch Everest Pro theme and you can edit the text from theme options panel.
Sakin
Keymaster@Chris: Just add the following CSS in “Custom CSS” box in Theme Options panel.
iframe { height: auto; }April 5, 2013 at 12:41 am in reply to: Deleted CSS for Comment off – Missing right column widgets! #6463Sakin
Keymaster@mword: Why do you set home as the static page. If you don’t want any page in homepage just disable the page in homepage from “Appearance => Theme Options => Homepage Settings => Homepage / Frontpage Settings”. In Enable Latest Posts or Page?, just uncheck it and save it.
To turn off the comment see this
Click here to Tutorial
Click here for VideoI don’t see where you want to hide “Comments Off” indicator. Can you point to particular url?
Sakin
Keymaster@Chris: You can add these script in either Header or Footer Code in “Appearance => Theme Options => Webmaster Tools => Header and Footer Code”. Ask your developer or the script provider when should you add this script to.
Sakin
Keymaster@rsolosky: Featured Image are used in Catch Box theme for featured post slider and when you are set the blog to “Show excerpt” in Content Layout from “Appearance => Theme Options”. It will not show in “Show full content” mode.
Sakin
Keymaster@akenyon51: Sorry we don’t have this option in theme you need to hire customizer to do that. You can hire also from http://jobs.wordpress.net/ and http://bit.ly/YANvfZ
Sakin
Keymaster@neh: You can only set static frontpage with your “Post” or “Page”. But not other then this.
So first, you need to activate “Enable Latest Posts or Page?” from “Appearance => Theme Options => Homepage Settings => Homepage / Frontpage Settings”. Then from “Settings => Reading” Set static front page or post.
Sakin
Keymaster@Peter: For Title and meta description customization and SEO. I would like to recommend WordPress SEO by Yoast http://wordpress.org/extend/plugins/wordpress-seo/
Sakin
Keymaster@akire64: Just add the following CSS in “Custom CSS” box in Theme Options panel.
/* To Transparent Background in Slider Text */
#main-slider .entry-title a, #main-slider .entry-content { background-color: transparent; }
/* To center the slider text */
#main-slider .entry-container { max-width: 100%; text-align: center; width: 100%; }
Sakin
KeymasterHello Tim,
I will contact your through email so that I can help you better. Please reply in email.
Regards,
SakinSakin
KeymasterHello Claudia,
1. Line Spacing
a. There seems to be an extra
more than I’d like after each paragraph. I only want one break and to me it looks like two.
— This is not the
but it’s the margin. We have set different margin as per the screen size. You can change the margin by adding the following CSS in “Custom CSS” box in Theme Options panel.
@media screen and (min-width: 1190px) { p { margin-bottom: 40px; } }
p { margin-bottom: 30px; }
@media screen and (max-width: 1060px) { p { margin-bottom: 20px; } }
b. The same can be said for the side bar. There is too much space between each widget, especially on top of the social media icon.
— You can change the margin by adding the following CSS in “Custom CSS” box in Theme Options panel.
@media screen and (min-width: 1190px) {
.widget { margin-bottom: 50px; }
.widget.widget_catcheverest_social_widget { margin-bottom: 40px; }
}
.widget { margin-bottom: 40px; }
.widget.widget_catcheverest_social_widget { margin-bottom: 30px; }
@media screen and (max-width: 1060px) {
.widget { margin-bottom: 30px; }
.widget.widget_catcheverest_social_widget { margin-bottom: 20px; }
}
2. Featured Content Break:
— Just add the following CSS in “Custom CSS” box in Theme Options panel.
#featured-post { border-bottom: 1px solid #E6E6E6; margin-bottom: 30px; }
@media screen and (min-width: 1190px) { #featured-post { margin-bottom: 40px; }
@media screen and (max-width: 1060px) { #featured-post { margin-bottom: 20px; } }
Sakin
Keymaster@chestnut1984: I am still not sure id I understand your question. If you want to add featured image in the pages or post then see this http://en.support.wordpress.com/featured-images/#setting-a-featured-image
Sakin
Keymaster@takac.agent: If you are using Catch Everest theme, then add the following CSS in “Custom CSS” box in Theme Options panel to hide the Featured Post Slider excerpt.
#main-slider .entry-content { display: none; }Sakin
Keymaster@Mickesan: You can just login and post your own topic http://catchthemes.com/support-forum/forum/catch-box-pro-premium/
For changing the text color of menu items, just add the following css in “Custom CSS” box in Theme Options panel. Change the color code as per your need.
#branding ul.menu a { color: #eeeeee; } -
AuthorPosts
