Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Ronel: Yes you are right ๐
Sakin
Keymaster@Ronel: Best option is to copy the whole css from parent theme responsive.css and then add your custom below. As the code I gave you will remove the parent theme responsive.css and then add your child theme responsive.css
But if you want to create new responsive.css in your child theme with only few css that you want to edit. Then you don’t need to remove parent theme css. You just need to add your child theme responsive.css by adding in the following code in your child theme functions.php file.
// dding new responsive.css in child theme function adventurous_child_enqueue_scripts() { wp_enqueue_style( 'adventurous-child-responsive', get_stylesheet_directory_uri() . '/responsive.css' ); } add_action( 'wp_enqueue_scripts', 'adventurous_child_enqueue_scripts', 11 );Sakin
Keymaster@emlawag: Sorry no option to add that. You can just add custom content. But not the posts. This features has not been added yet.
Sakin
Keymaster@shaun.smudger.smith: You can adjust the padding and margin as per your need in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
#header-right { padding-top: 50px; } #header-right .widget.widget_catcheverest_social_widget { margin-bottom: 10px; }Sakin
Keymaster@teddiebozh: thanks for your appreciation ๐
Sakin
Keymaster@Ronel: From which browser in mobile you are checking in . Are you checking in Safari. Sorry it cannot be done simply with css as it’s default for input type submit in mobile devices.
but you can remove that for original bottom by adding in the following css:
input[type=submit] { -webkit-appearance: none; -webkit-border-radius: 0; }Sakin
Keymaster@Joseph: Sorry we have no control on this. This is default gallery from WordPress.
You can add the following css to make it center:
.attachment .entry-attachment { text-align: center; } .attachment .entry-attachment a { display: inline-block; margin: 0 auto; }That number below the gallery is the Caption in theme image. If you don’t want that then edit that image and remove the caption.
To remove date from attachment, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
.attachment .entry-meta { display: none; }But to remove the link to full image, you cannot do that from Custom CSS. For this you need to build child theme. Check this http://catchthemes.com/blog/create-child-theme-wordpress/ for child theme. The copy image.php in yoru child theme and edit that link.
Sakin
Keymaster@bigoslesli: I have already answered you in http://catchthemes.com/support-forum/topic/2-menus-showing/
Sakin
Keymaster@luismarioochoa:
1. If you want to hide Continue Reading… from your slider then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#slider-wrap a.more-link { display: none; }2. You cannot just add Ubuntu font family. As Ubuntu is a google font and you need to load that font first. So, just go to “Appearance => Theme Options => Font Family Options”, then select Ubuntu font. Maybe you can select for Headings Font Family. Then only you can add css as:
#slider-wrap .featured-text { font-family: 'Ubuntu', sans-serif; }3. I don’t get it what you mean. If you want to remove the excerpt from the slider then you need to remove the following css from custom css box:
#slider .slider-excerpt { clear: both; display: inline-block; }Sakin
Keymaster@bigoslesli: Yes we have donation page at http://catchthemes.com/donate. We use this donation fund for developing free version and free support.
It will be great if you support Catch Kathmandu theme by providing your review and rating at https://wordpress.org/support/view/theme-reviews/catch-kathmandu/. Thanks a lot ๐
Sakin
Keymaster@dfwrgjeff: You can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
#header-right .widget a { color: #757575; }Sakin
Keymaster@bigoslesli: Thanks for your appreciation.
Sakin
Keymaster@4iMEDIA: It should work fine. Which version are you suing it. Ok I will email you to check your server.
Sakin
Keymaster@level7tech: To change the header color you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#branding { background-color: #000; color: #ddd; } #site-title a { color: #ddd; }But if you wan your header image to stretch 100% then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#header-image img { width: 100%; }Sakin
Keymaster@Cricket: Thanks for your appreciation ๐
Sakin
Keymaster@Young: hum for that can you try adding in the following css:
#masthead .wrapper { position: relative; } .sidebar-header-right { position: absolute; right: 0; top: 0; }Sakin
Keymaster@bigoslesli: When you add in Custom Color from “Appearance => Header”. It creates color as important in both site title and description. That is why it’s not working. Can you try adding in the following css instead:
#masthead #site-description { color: #d3bf81 !important; }February 13, 2015 at 7:30 pm in reply to: Make the author link on meta go to buddypress profile #51663Sakin
Keymaster@MasterManiacs: You will find author link in various places. The main one that you need to customize in your child theme is function
catchbox_posted_on(). You can just copy this function to your child themefunctions.phpfile and edit it. You will find this function incatch-box-pro/inc/catchbox-fucntions.phpfile.Next you can change in file such as
content-single.php content-status.php content-image.php author.php -
AuthorPosts
