Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Sean: You can change the color code in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
.mobile-menu-anchor a.genericon-menu, .mobile-menu-anchor a.genericon-menu:hover { background-color: #fff; color: #404040; }Sakin
Keymaster@Susie: We have option to display Featured Content either in Homepage only or Entire Site. There is no option to make that Featured Content only appear on specific pages. You might have to look for plugin to add featured content in pages.
But you can make that features slider to show on “Entire Site” from “Appearance => Customize => Featured Content => Featured Content Options => Enable Featured Content on” and the add in css to hide in all pages and show only in that pages. If you want to do this, then enable it in all pages and send me the page url where you want to show it only.
Sakin
Keymaster@Mattias: Please post in your site URL so that I can check in and suggest you the custom css.
Sakin
Keymaster@svr: Sorry there is no option like that. So, you might want to look for plugin which provides shortcode to add in posts in your pages.
August 5, 2015 at 12:56 pm in reply to: use "more" option / change font size / photos in widget #62128Sakin
Keymaster@bertolotti:
1. I don’t understand what do you mean by use the option “more”. If you are talking about more button in your post. That that is used for splitting content for archive pages. Read more about it at http://devotepress.com/wordpress-writing-editing/how-to-split-content-using-the-more-tag-option/. So, if you have blog and set it up as “Show Full Content” from “Appearance => Customize => Theme Options => Layout Options => Archive Content Layout”. This this breaks the text when you add that more tags. But it’s not useful when you are using expert layout.2. We don’t recommending changing font as it’s responsive design and it changes as per the screensize. But if you want to change it, then you can change the font size in the following css and add it in “Appearance => Theme Options => Custom CSS Options” box. It will change font for
@media screen and (min-width: 991px) { /* Default Font Sizes */ body, button, input, select, textarea { font-size: 15px; } /* Title Font Sizes */ .entry-title, #promotion-message h2, #featured-content #featured-heading { font-size: 30px; } /* Sidebar Widget Title Font Sizes */ .sidebar .entry-title, .widget-title { font-size: 20px; } }3. Yes, you can insert picture in widget. You can drag and drop “CT: Advertisement” widget to your sidebar from “Appearance => Widgets” and then add your image URL in “Image Url” box.
Sakin
Keymaster@Michael: Looks like you created those pages as Post. You need to create page from “Pages => Add New”. See this for more information about page https://en.support.wordpress.com/pages/ and also check this for more information about Writing and Editing https://en.support.wordpress.com/category/writing-editing/
Sakin
Keymaster@Pedrof: Please post in your site URL when you post in your support question. So, that I could check in issue in details.
The login and logout different view issue of more of Cache then of theme. So, please check your cache plugin. Have install Cache plugin like W3 Total Cache, WP Super Cache, WP Rocket Cache or other Cache plugin. Then go to that plugin settings and clear your cache.
To hide comments are closed, I have already answered you in http://catchthemes.com/support-forum/topic/the-hell-of-comments-are-closed/
Sakin
Keymaster@svr: You can add the following css in “Appearance => Theme Options => Custom CSS” box:
body { padding-top: 0; }August 5, 2015 at 8:18 am in reply to: Fixed Menu Header: Increasing size, changing color and logo placement #62118Sakin
Keymaster@matthewseanmclachlan: You can add the following css. Also you can change box shadow details, color and opacity as per your need.
#header-top { box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); position: relative; }Sakin
Keymaster@ami.mehta70: I just check in Catch Responsive Version 1.8 in our server and the slider is working fine. So, there must be some configuration or customization issue in your site.
If you check your source, there is extra code in the header as below. Can you tell me where do you get that from.
</head> <body> page contents </body> </html>So, check your custom codes if you have any. Try removing that. IF you haven’t added in custom codes then check your plugin, try disabling plugin one by one and check in.
Sakin
Keymaster@Pedrof: You should have posted in your site URL. So, that I can check in and send you exact css. The comment closed text will be displayed when the comment is closed in your post. To hide that you can add the following css in “Appearnace => Theme Options => Custom CSS” box:
.nocomments { display: none; }Sakin
Keymaster@Michaela: Check your cache. Go to ” W3 Total Cache” plugin and clear the cache first. then refresh your browser and check in. As when I check in it’s showing same ins all browser. Also check your browser zoom.
Sakin
Keymaster@Harry: It’s just the color of your menu. So, just add the following css in “Appearance => Customize => Theme Options => Custom CSS” box, then you will see default mobile menu:
#masthead #header-left-menu { background-color: #000; color: #fff; }Sakin
Keymaster@Phil: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
.home #content .entry-header { display: none; }Can you send me your site URL so that I check in to add spaces. You can either add padding-bottom or margin-bottom for Promotion headline and it depends on the background change. So, either use:
#promotion-message { padding-bottom: 20px; }
or
#promotion-message { margin-bottom: 20px; }Sakin
Keymaster@Carol: For contact form, you can use any contact plugin. We recommend using contact form 7 or Jetpack plugin contact form. So, just install/activate the plugin and then add that form shortcode in your contact page. You can check this tutorial from Contact Form 7 http://contactform7.com/getting-started-with-contact-form-7/
Sakin
Keymaster@Alexander:
1. You can add the following css in “Appearance => Theme Options => Custom CSS” box to hide entry meta in Homepage and category pages:
.home .entry-meta, .archive .entry-meta { display: none; }Then to reduce the space between title and excerpt content, you can add the following css:
.home #content .entry-title, .archive #content .entry-title { padding-bottom: 0; }Then if you further want to reduce it then you can change the padding top in the following css and add it Custom CSS box:
.entry-summary { padding-top: 20px; `}2. You can add the following css in “Appearance => Theme Options => Custom CSS” box
#main-slider img { width: 100%; }3. For that, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
.page-title { font-size: 30px; line-height: 1.3em; } @media screen and (max-width: 940px) { .page-title { font-size: 24px; line-height: 1.2; } } @media screen and (max-width: 640px) { .page-title { font-size: 20px; } }August 4, 2015 at 10:03 pm in reply to: Footer widgets 2 and 4 get incorrect left margin in mobile #62081Sakin
Keymaster@Haydie: Thanks we will fixed it in next version update.
-
AuthorPosts
