Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@balos: Sorry I don’t get it what you mean. Can you explain in reference with your site URL so that I can check in and give you the solution.
Sakin
Keymaster@Kim: In this theme Previous and Next will be at the top of the post. But you have hidden it by adding the following css. You can remove that and it will load at the top of your post.
.single #nav-single { display: none; }To move this at the bottom, you need to build child theme. See this http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy
single.phpfile in your child theme and then move the code<nav id="nav-single"> <h3 class="assistive-text"><?php _e( 'Post navigation', 'catchbox' ); ?></h3> <span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">←</span> Previous', 'catchbox' ) ); ?></span> <span class="nav-next"><?php next_post_link( '%link', __( 'Next <span class="meta-nav">→</span>', 'catchbox' ) ); ?></span> </nav><!-- #nav-single -->Below:
<?php get_template_part( 'content', 'single' ); ?>Sakin
Keymaster@Kim: You have activated Jetpack plugin “Infinite Scroll” module. You can go to Jetpack setting and deactivate that and it will come back to older posts.
December 8, 2014 at 11:38 pm in reply to: Whitespace between featured post slider and homepage headline #48646Sakin
Keymaster@Stanley: I think you are checking with the older version of Internet Explorer. As I just check in with Internet Explorer 11 and it works perfectly same.
Sakin
Keymaster@Matt: I see that you have edited the core theme style.css file. You shouldn’t edit that. You shouldn’t edit/add any files inside ‘adventurous-pro’ directory. As all the files will be overwritten when you update the theme.
Also I see the issue with the css that you have changes in style.css file. Go to style.css and remove the height in the following css:
#footer-sidebar { background-color: #004b99; height: 125px; } #site-generator { background-color: #004b99; height: 50px; }It should be simple as:
#footer-sidebar { background-color: #004b99; } #site-generator { background-color: #004b99; }Note: Please reset all the style.css with the original file and add all your edit css in “Appearance => Theme Options => Custom CSS” box or build child theme and add it in your child theme style.css http://catchthemes.com/blog/create-child-theme-wordpress/
Sakin
Keymaster
@Matt: For square list and decimal for ul, ol in widgets, you can add the following css in “Appearance => Theme Options => Custom CSS” box:.widget ul { list-style: square outside; } .widget ol { list-style: decimal outside; } .widget ul li, .widget ol li { margin-left: 20px }But I don’t understand your second question. Where are you trying to alight your header right menu. What do you mean? Sorry please explain bit more or maybe share screenshot of what you mean.
December 7, 2014 at 12:39 pm in reply to: Whitespace between featured post slider and homepage headline #48590Sakin
Keymaster@Stanley: For homepage message issue, can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box:
#homepage-message { border: none; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; display: inline-block; width: 100%; }For border that you show in screenshot in homepage, you can add the following css:
.home .site-content article { border-bottom: none; }Sakin
Keymaster@KathyG: No Problem, I understand it. Sometime, working around with WordPress is really confusing. 🙂
Sakin
Keymaster@greengiant: Menu is there, it’s just because of your color code changes. Menu is not visible. So, you need to change the background-color and text color of menu. As per your color scheme in your site, I suggest you to add the following css in “Appearance => Theme Options => Custom CSS” box:
#hgroup-wrap .sb-holder { background-color: #415d41; } #hgroup-wrap .sb-holder a { color: #fff; }Sakin
Keymaster@Matt: The spaces in Promotion are top and bottom is controlled through padding-top and padding-bottom, so you can adjust the padding as per your need in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
#homepage-message { padding-top: 30px; padding-bottom: 30px; }To make the promotion area, one column and text align center, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#homepage-message .left-section, #homepage-message .right-section { text-align: center; width: 100%; } #homepage-message .right-section a { display: inline-block; }Sakin
Keymaster@Georgina: Sorry there is no option to remove that in Free version. That option is only there in pro version. But you can hide that by adding in the following css in “Appearance => Theme Options => Custom CSS” box.
#header .social-search { display: none; }Note: I see that you have added in Header Image in your header which is I guess your logo. So, it’s better you add that image URL in your logo URL at “Appearance => Theme Options => Logo Options”
Sakin
Keymaster@Aleao: Sorry there is no option to load different image in Mobile devices. So, for that case you need to use Mobile Apps or Theme like JetPack plugin has mobile theme module.
Sakin
Keymaster@Dennis: Your featured image in the page 72.52.223.1/?page_id=73 is too large. It’s about 1800px width by 1154px height. This is not recommended. The maximum width that we recommend is Width: 1280px. So, please upload smaller image as larger image will make your site slow.
About your page 72.52.223.1/?page_id=2, you have selected the “Sidebar Layout” as “No sidebar” that is why it small width. You need to change that Sidebar Layout to “No sidebar, Full Width”. For that you need to edit that page and you will see option like this http://www.pinterest.com/pin/548594798331765450/
Sakin
Keymaster@Kim: To make you logo small in mobile then you can add the following css:
@media screen and (max-width: 980px) { #masthead #site-logo img, #masthead.fixed-header #site-logo img { max-height: 28px; } }Sakin
Keymaster@kami: Sorry you are not using our theme. So, we will not be able to support you.
Sakin
Keymaster@schnarchn: Don’t know about that. Maybe there was plugin update.
Sakin
Keymaster@Aleao: You page speed test is really good. 96 is Desktop and 93 in mobile is really awesome. Maybe you can share your experience in this. I don’t think any top website can even match this speed. So, there is nothing much I can suggest you to improve it. Maybe I need to learn from you 🙂
Sakin
Keymaster@sandytang59: Just try the following css. IF this doesn’t work then sorry you might have to hire customizer to work on this. As we don’t have this layout in design.
@media screen and (min-width: 783px) { .three-columns #third-sidebar { width: 33%;} .three-columns #third-sidebar .widget { width: 100%; } .three-columns .content-sidebar-wrap { width: 66%; } .three-columns #primary, .three-columns #secondary { width: 49.4%; } }December 6, 2014 at 1:00 am in reply to: Whitespace between featured post slider and homepage headline #48547Sakin
Keymaster@Stanley: Oh that’s the border. You can add the following css:
#homepage-message { border-color: #423031; }December 6, 2014 at 12:40 am in reply to: Decrease slider size and remove white spaces in Catch Everest Pro #48544Sakin
Keymaster@Stanley: Each site can be different. If the css is not working then I suggest you remove the custom css and then send me details of spaces that you want to remove it and then I will send you CSS one by one. Also this post is old one and you are using Catch Everest Pro them not the free one.
So, can you remove your custom css and then post your question in Catch Everest Pro support forum at http://catchthemes.com/support-forum/forum/catch-everest-pro-premium/
-
AuthorPosts
