Forum Replies Created
-
AuthorPosts
-
Sakin
KeymasterHi Laurie,
Do you mean that you have to remove the fixed header and make it normal header. I am bit confused with your question. If that is the case then you can add the following css in “Appearance => Theme Options => Custom CSS” box.
#masthead.fixed-header { position: relative; }Regards,
SakinSakin
Keymaster@ashrafashraf: Did you refresh your browser and check in as now when I check in your site. I see Powered by on right and Copyright on left. So, it’s corrected.
Sakin
Keymaster@acetumang: You can either make it transparent by adding in the following css in “Appearance => Theme Options => Custom CSS” box.
#branding { background-color: transparent; }Or instead you can use RGBA color code and make it 79% transparent by adding in the following css in “Appearance => Theme Options => Custom CSS” box.
#branding { background: rgba(255, 255, 255, 0.7); }Sakin
Keymaster@ashrafashraf: You have added all those inside 767px screen. So, replace your Custom CSS
@media screen and (max-width: 767px) { .social-profile {display: none;} #site-generator .copyright, #site-generator .powered { display: inline; width: 47%; } #site-generator .powered { float: right; } #site-generator .copyright { float: left; } #site-generator .copyright { float: left !important;; margin-right: 3%; margin-left: 0; text-align: left; } #site-generator .powered { float: right !important; margin-left: 3%; margin-right: 0; text-align: right; } }With the following css:
@media screen and (max-width: 767px) { .social-profile {display: none;} #site-generator .copyright, #site-generator .powered { display: inline; width: 47%; } #site-generator .copyright { float: left; margin-right: 3%; margin-left: 0; text-align: left; } #site-generator .powered { float: right; margin-left: 3%; margin-right: 0; text-align: right; } } #site-generator .powered { float: right; text-align: right; } #site-generator .copyright { float: left; text-align: left; }June 26, 2014 at 11:40 pm in reply to: Unable to edit theme_options.php without editing the parent theme #36485Sakin
Keymaster@prajakta: if you want to remove action and add your own then it will like below:
// Removing the Default Action Hook function unhook_catchkathmandu_functions() { remove_action( 'admin_menu', 'catchkathmandu_options_menu' ); } add_action( 'init', 'unhook_catchkathmandu_functions' ); add_action( 'admin_menu', 'catchkathmandu_child_options_menu' ); function catchkathmandu_options_menu() { add_theme_page( __( 'Theme Options', 'catchkathmandu' ), // Name of page __( 'Theme Options', 'catchkathmandu' ), // Label in menu 'edit_theme_options', // Capability required 'theme_options', // Menu slug, used to uniquely identify the page 'catchkathmandu_child_theme_options_do_page' // Function that renders the options page ); } function catchkathmandu_child_theme_options_do_page() { }Sakin
Keymaster@ashrafashraf: That’s from rtl.css. So, you can add the following css to put it back.
#site-generator .powered { float: right; } #site-generator .copyright { float: left; }Sakin
Keymaster@ashrafashraf: Adding Custom Header image and removing title is pretty easy. You can just go to “Appearance => Header” and then upload the image, see this screenshot http://www.pinterest.com/pin/548594798331307420/ and then to remove the title, you can uncheck “Show header text with your image.” in header text and then save changes.
Sakin
Keymaster@helen68: I see that you have heavily customize the Catch Evolution Free theme. I see that you have added whole style.css in “Appearance => Theme Options => Custom CSS” box. This gives issues. You are not supposed to add all. Please remove that and it will be fine. You are supposed to add only css changes that you need.
Sakin
Keymaster@Ida: So, when do you want to show the Mobile Menu instead of Full Menu. The CSS that controls mobile menus is as below. So, in the following css you can change the max-width depending on the screen-size and add it in “Appearance => Theme Options => Custom CSS” box.
/* For Max Screen Size 767px */ @media screen and (max-width: 767px) { #masthead .menu, #footer-menu { display: none; } .sb-holder { display: block; } }Sakin
KeymasterHello Agnès,
I just check in your site and see that there is conflict with slider js and “WP Widget Gallery” plugin JS. So, you need to deactivate that plugin and it will work fine.
Regards,
SakinSakin
KeymasterHello Benni,
We are trying to release version 1.1 tomorrow.
Regards,
SakinSakin
Keymaster@Ruby: Thank for reporting issue in Featured Content Healing issue. We have just got that info also from @Jessica and we are working on Fixed in both Adventurous Free and Pro version. We will fixed this as soon as possible. Please wait for version 1.1
There is no option to change the color of slider controllers colors. For this you need to add Custom CSS. So, change the color code in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box.
/* For Default */ #controllers a { background-color: #fff; } /* For Hover and Active */ #controllers a:hover, #controllers a.active { background-color: #7c9b30; }Sakin
Keymaster@Djapeto: I think you are confused. In WordPress, it will display “Sticky Post” as the first post only in Blog Archive and homepage. But in Category archive, it will display the post in the order of date.
See the example of default WordPress Theme
Homepage / Blog Archive: This shows sticky post as the first post http://twentyelevendemo.wordpress.com/
Category Archive: This will show post in date order http://twentyelevendemo.wordpress.com/category/uncategorized/This is same with the Catch Kathmandu Theme:
Homepage / Blog Archive: This shows sticky post as the first post http://catchthemes.com/demo/catch-kathmandu/blog/
Category Archive: This will show post in date order http://catchthemes.com/demo/catch-kathmandu/category/uncategorized/Sakin
Keymaster@jeffery.scherer: It is showing Helvetica for me. Remember, when you choose Helvetica font, it will check in the computer that you are viewing site on, if there is Helvetica font install or not. If the site doesn’t find the Helvetica font in the computer then only it will display Arial font as alternative.
We will not be able to load Helvetica always as this is Paid font and are not authorized to add in theme with embed font.
Sakin
Keymaster@ashrafashraf: You can try adding in the following css.
#page, #branding { background: none transparent; }Sakin
Keymaster@Jessica: Thanks for reporting the issue and we have just fixed it version 0.6. We have submitted the update for WordPress.org and it will be live soon after the WordPress Theme Review Team Approves it.
For now you can access the updates version from WordPress SVN and you can update the theme with our Catch Updater plugin.
Sakin
Keymaster@ashrafashraf: if you need both then it will be as below:
@media screen and (max-width: 767px) { #site-generator { padding-top: 75px;} .social-profile {display: none;} }Sakin
Keymaster@ashrafashraf: Yes you can do that. But why you need
#site-generator { padding-top: 75px; }You can simply add@media screen and (max-width: 767px) { .social-profile {display: none;} }Sakin
Keymaster@ashrafashraf: For main background color, you don’t need important. So, replace our custom css from
#main { background-color: #4D1C1C !important; }to
#main { background-color: #4d1c1c; }And for your gallery under your slider you can use the following css:
#gw_go_portfolio_flex9 {background-color: #eee; }Sakin
Keymaster@Bouncedancer: Please send me your site URL so that I can check in. I need more info on this.
-
AuthorPosts
