Forum Replies Created
-
AuthorPosts
-
August 12, 2015 at 11:38 pm in reply to: Impossible to save and refresh modifying no of featured content #63421
Sakin
Keymaster@riordino: This is strange, ok I will contact you though email so that I can check in your server.
Sakin
Keymaster@christiane: Thanks a lot 🙂
Sakin
Keymaster@Enoch: Instagram is already there.
Sakin
Keymaster@carlo caccialanza: Which featured content type are you using it. It depends on that.
Sakin
Keymaster@Luchino: No there is no option to add in custom social icons in Pro version. It’s same with free one.
So, the solution to add Chat or forum will be. First, edit your social menu and add Chat and Form custom link. In that custom link give the class. For example, for chat give it as socialchat and forum as socialforum, see this screenshot https://www.pinterest.com/pin/548594798337320151/ and add the following css in your Child theme style.css file. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/
.social-menu ul li.socialchat a:before { content: "\f108"; } .social-menu ul li.socialforum a:before { content: "\f108"; }Sakin
Keymaster@Kim:
1. Ok then replace the css.sidr ul li ul { display: none; }with the css.sidr ul.sub-menu ul { display: none; }2. I am bit confused as you have said post on the post page. But the link you have posted in just a post. There is post navigation above your post title. That is taking space.
3. It’s because of the custom css you have added in
body, input, textarea { font-size: 20px; line-height: 1.99em; }Sakin
Keymaster@Laszlo: That css is working fine. But if you are talking about the space that you have above “Categories” meta tags, then that is from space in your pages/posts. For that you edit that page/post and then go to text mode and remove all empty
<p></p>. Check this for text mode screenshot https://www.pinterest.com/pin/548594798332210926/Sakin
Keymaster@Patrick: If you want to center all the title of pages/posts then you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
.entry-header { text-align: center; }But if you want to center only page title, then add the following css instead.
.type-page .entry-header { text-align: center; }For Google Adsense above page title, I recommend you to search for plugin as it’s little complicated to do it from theme. To do it from theme, you need to build child theme, for child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then add the code like below in your child theme functions.php file
function catchresponsive_adsense_above_pagetitle() { ?> add in your code here <?php } add_action( 'catchresponsive_before_page_container', 'catchresponsive_adsense_above_pagetitle', 20 );Sakin
Keymaster@Dhuan: To make footer menu, left below and right above Curved you can add the following css:
#colophon #access-footer { -moz-border-radius: 0 10px; -webkit-border-radius: 0 10px; border-radius: 0 10px; }For slider background color and border color, you can change the color code in the following css and add it in “Appearance => Theme Options => Custom CSS” box:
#slider { background-color: #555; border-color: #ccc; }To change the white color, you can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
#branding, .hentry, .no-results, #author-info, #disqus_thread, #content .error404, .widget, #site-generator { background-color: #fff; }Sakin
Keymaster@Barb: That Continue reading → at the homepage top left corner is from “PressGraph Post Meta Tags”. So, disable that plugin and you issue will be solved.
For menu background color, you can change the color code in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:
#branding #access, #colophon #access-footer, #branding ul.menu ul a { background: none #b7d6ab; }Sakin
Keymaster@Kim: For that, just add the following css in “Appearance => Theme Options => Custom CSS” box:
.sidr ul li ul { display: none; }Sakin
Keymaster@andrewmaff: There are two common method you ccan use to update the theme. 1. Using FTP and 2. Using WordPress Administration Panel. For this, you can ready theme instructions page at http://catchthemes.com/theme-instructions/full-frame-pro/#updating
Sakin
Keymaster@senna: For this I recommend you to use plugin for this. try searching for plugin at https://wordpress.org/plugins/
Also are you using contact form 7 plugin in your contact page. Then check this https://wordpress.org/support/topic/contact-form-7-adwords-conversion-tracking
Sakin
Keymaster@Cybersnaby: Please post in your site URL so that I can check in why it’s not working. The following should work fine. Did you add that css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
.catchbase-nav-menu a { font-size: 20px; }To center it, you can add the following css:
.nav-primary .wrapper { text-align: center; } .nav-primary .menu, .nav-primary.search-enabled .menu { display: inline-block; float: none; margin: 0 auto; }Sakin
Keymaster@blackkeys: I see your about us page only have long content and other pages don’t have This is the reason it’s not showing scroll up in other pages.
Sakin
Keymaster@SungJu: Please post in appropriate forum. This is for Catch Kathmandu theme, that is why it will not work in your site. For Simple Catch Pro theme, you need to use forum http://catchthemes.com/support-forum/forum/simple-catch-pro-premium/
So, to reduce the height of your menu, you can reduce the line-height in the following css and then you need to reduce top as well. Otherwise, your submenu will not work.
#access ul li a { line-height: 48px; } #access ul li ul { top: 48px; } -
AuthorPosts
