Forum Replies Created
-
AuthorPosts
-
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.
Sakin
Keymaster@Bouncedancer: It depends on how plugin is build and most of the plugin from reputed developers have keep that is might and will not hamper load. Also this plugin work more on backend and will not effect must on frontend it that is developed properly. So, where you select the plugin: check in the update, reviews and download stats.
Sakin
Keymaster@ashrafashraf: Yes now change the padding as per you need. For desktop, for example change
#site-generator { padding-top: 459px; }
to
#site-generator { padding-top: 535px; }Similarly you can check your site and change as per you need in different media screen sizes.
Sakin
Keymaster@ashrafashraf: It’s the same code I gave you before. I just wanted you to change the padding there. Nothing more.
Sakin
Keymaster@ashrafashraf: It’s your wish to add in padding in the site generator. But I advice you to adjust in the css that i gave you previously. You can increase the padding here.
#site-generator { padding-top: 459px; } @media screen and (max-width: 1060px) { #site-generator { padding-top: 300px; } } @media screen and (max-width: 960px) { #site-generator { padding-top: 220px; } } @media screen and (max-width: 767px) { #site-generator { padding-top: 134px; } } @media screen and (max-width: 479px) { #site-generator { padding-top: 75px; } }Sakin
Keymaster@ashrafashraf: Please stop adding in comment again and again. This will move your question to the bottom as I check in the older question first. So, when you add comment in your old question, your question will become new and will be in last in the list. Just wanted to make you aware of this.
Sakin
Keymaster@ashrafashraf: It’s the matter of background position. You can try adding in the following css:
body { background-image: url("http://www.idaat.se/wp-content/uploads/2014/06/15612711_xl1.jpg"); background-position: center top; background-repeat: no-repeat; }Sakin
Keymaster@Cybersnaby: Catch Mustang uses tinynav that is just a select-box and will be difficult to change the style. So, we are thinking of changing more flexible menu in next version update. But has not been finalized yet.
So, the background and shadow is from the main menu style only. This is css controlling both main menu and responsive menu.
#access { background-color: #fff; border-radius: 3px; box-shadow: 0 1px 4px #bababa; padding: 0 10px 10px; position: relative; }And yes for the font size, it is controlled from
.tinynav { font-size: 16px; }For the mobile menu item color:
#access select { color: #474e55; }Sakin
Keymaster@Cybersnaby: First the Header Title and Description optional at the text that will be added in header just below the menu. But the page title will be added in the content section. So, these are different. For example, if you see it in the demo about page http://catchthemes.com/demo/catch-mustang/about/, you can see the difference.
There is not option to disable the page title, you can empty the page title in your page and it will not display it.
About removing the link in the page title, first you need to build child theme and then create functions.php file in your child theme and add this code in the following file https://gist.github.com/catchthemes/3579939d4a3f4abd322e
Sakin
Keymaster@Cybersnaby: No Problem. Cheers 🙂
Sakin
Keymaster@Cybersnaby: Nice 🙂
Sakin
Keymaster@zoran87: Sorry I don’t get it what you mean. Is the problem when you have multi-language or just when you change the background. Can you try it by disabling the plugin. Sometime, there will be plugin incompatibility issues.
June 25, 2014 at 11:00 pm in reply to: Unable to edit theme_options.php without editing the parent theme #36312Sakin
Keymaster@prajakta: Option Framework will not be expensive and it is just on backed. Also if you need, you can add option by creating child theme option panel. Here is the sample code that you can add in your child theme
functions.phpfileadd_action( 'admin_menu', 'catchkathmandu_child_options_menu' ); /* * Create a function for Theme Options Page * * @uses add_menu_page * @add action admin_menu */ function catchkathmandu_child_options_menu() { add_theme_page( __( 'Theme Options Child', 'catchkathmandu' ), // Name of page __( 'Theme Options Child', 'catchkathmandu' ), // Label in menu 'edit_theme_options', // Capability required 'child_theme_options', // Menu slug, used to uniquely identify the page 'catchkathmandu_child_theme_options_do_page' // Function that renders the options page ); } /* * Render Catch Kathmandu Child Theme Options page * * @uses settings_fields, get_option, bloginfo * @Settings Updated */ function catchkathmandu_child_theme_options_do_page() { } -
AuthorPosts
