Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@ddelmotte: What’s your WordPress version? Can you share your menu screenshot?
Sakin
Keymaster@@klox77: You can just remove that css from your Custom CSS box.
Sakin
Keymaster@rgcoles: Actually that is not there in theme. But can you try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
#slider-wrap .featured-img { float: left; } #slider-wrap .featured-text { float: right; }Sakin
Keymaster@klox77: 900px is too small. When you make 900px you need to adjust a lot. So, add in the following CSS in “Appearance => Theme Options => Custom CSS” box.
@media screen and (min-width: 1060px) { .site { margin: 20px auto; width: 900px; } #primary { width: 500px; } .page-links, .widget, blockquote, .site-content article, .site-content .site-navigation, #infinite-handle, .comments-title, #reply-title, #respond { margin-bottom: 30px; } #homepage-message { margin-top: 30px; } article.sticky .featured-post, .page-header, p, .featured-image, .entry-content table, .comment-content table, .widget.widget_catcheverest_social_widget, #content .searchform { margin-bottom: 20px; } #header-right .widget, .entry-header, article.format-aside .entry-title, .comments-area article header { margin-bottom: 20px; } .page .entry-header, .widget-title, #header-right .widget.widget_catcheverest_social_widget { margin-bottom: 10px; } .container { padding: 0 30px; } #site-logo, #hgroup, #header-right, #supplementary, #main { padding-top: 30px; } #hgroup-wrap, .hentry, .comments-area article { padding-bottom: 30px; } #site-generator .site-info { padding: 20px 0; } #header-menu ul.menu a, #colophon #access-footer ul.menu a { padding: 0 15px; } .entry-header .entry-title { padding-bottom: 0; } }Sakin
Keymaster@rgcoles: I check in the document you send me. It’s the same as your site. It doesn’t show what changes you want.
Sakin
Keymaster@ddelmotte: There is manage menu screen See this http://en.support.files.wordpress.com/2013/04/menus-edit-menu-screen.png
Sakin
Keymaster@k.capelli: You can add the css like the following CSS in “Appearance => Theme Options => Custom CSS” box to add your custom image in the header background.
#branding { background: url("http://www.thelostlondoner.com/wp-content/uploads/2013/09/id1.jpg") repeat scroll 0 0 transparent; }For menu, it’s better you just add the background url from “Appearance => Theme Options => Color Options”. But if you really was to add image, then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box, where you can just change the image url.
#access { background: url("http://www.thelostlondoner.com/wp-content/uploads/2013/09/id1.jpg") repeat scroll 0 0 transparent; }To make the header center, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
#branding .logo-wrap, #site-logo, #site-details { width: 100%; } #site-logo a img, #site-details { display: block; float: none; margin: 0 auto; padding: 0; text-align: center; }This is the level at max I can help in. For more, you need to hire developer to customize it for you.
Sakin
Keymaster@lew1s: you can add following CSS ot hide it.
.page .entry-header, .single .entry-header, #main-slider .entry-header { display: none; }Sakin
Keymaster@lew1s: When I check in your category, I see that you have hidden the title with css.
.entry-title { display: none; }The best option is to copy content.php file in your child theme and edit it. So, it will be like this
<?php /** * The default template for displaying content * * @package Catch Themes * @subpackage Catch Everest * @since Catch Everest 1.0 */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php if ( is_sticky() && is_home() && ! is_paged() ) : ?> <div class="featured-post"><?php _e( 'Featured post', 'catcheverest' ); ?></div> <?php endif; ?> <?php if( has_post_thumbnail() ):?> <figure class="featured-image"> <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'catcheverest' ), the_title_attribute( 'echo=0' ) ) ); ?>"> <?php the_post_thumbnail( 'featured' ); ?> </a> </figure> <?php endif; ?> <div class="entry-container"> <header class="entry-header"> <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'catcheverest' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1> <?php if ( 'post' == get_post_type() ) : ?> <div class="entry-meta"> <?php catcheverest_header_meta(); ?> </div><!-- .entry-meta --> <?php endif; ?> </header><!-- .entry-header --> <?php if ( is_category() ) : return false; else : // Getting data from Theme Options global $catcheverest_options_settings; $options = $catcheverest_options_settings; $current_content_layout = $options['content_layout']; $catcheverest_excerpt = get_the_excerpt(); if ( is_search() || ( !is_single() && $current_content_layout=='excerpt' && !empty( $catcheverest_excerpt ) ) ) : ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?> <div class="entry-content"> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'catcheverest' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'catcheverest' ), 'after' => '</div>' ) ); ?> </div><!-- .entry-content --> <?php endif; ?> <footer class="entry-meta"> <?php catcheverest_footer_meta(); ?> <?php if ( comments_open() && ! post_password_required() ) : ?> <span class="sep"> | </span> <span class="comments-link"> <?php comments_popup_link(__('Leave a reply', 'catcheverest'), __('1 Reply', 'catcheverest'), __('% Replies', 'catcheverest')); ?> </span> <?php endif; ?> <?php edit_post_link( __( 'Edit', 'catcheverest' ), '<span class="sep"> | </span><span class="edit-link">', '</span>' ); ?> <?php if ( is_singular() && get_the_author_meta( 'description' ) && is_multi_author() ) : // If a user has filled out their description and this is a multi-author blog, show a bio on their entries. ?> <div class="author-info"> <div class="author-avatar"> <?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'catcheverest_author_bio_avatar_size', 68 ) ); ?> </div><!-- .author-avatar --> <div class="author-description"> <h2><?php printf( __( 'About %s', 'catcheverest' ), get_the_author() ); ?></h2> <p><?php the_author_meta( 'description' ); ?></p> <div class="author-link"> <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author"> <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'catcheverest' ), get_the_author() ); ?> </a> </div><!-- .author-link --> </div><!-- .author-description --> </div><!-- .author-info --> <?php endif; ?> </footer><!-- .entry-meta --> <?php endif; //Category empty loop ?> </div><!-- .entry-container --> </article><!-- #post-<?php the_ID(); ?> -->Sakin
Keymaster@webhive: Are are using Catch Box theme? This theme is responsive design so, you need to take that in consideration and add the spaces according to the screen sizes. So you css will be like. Read about media screen and you will get idea.
For screensize with max width 1224px
@media screen and (max-width: 1224px) { }
For Ipad landscape@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) { }Sakin
Keymaster@nzcid: Just build child theme and then create file functions.php then add the code like below
<?php function catchbox_child_custom_ads() { /* Add in your Custom Code here */ } add_action('catchbox_after_header', 'catchbox_child_custom_ads', 10 );Sakin
Keymaster@k.capelli: Your customize looks advance. So, you might need to consider hiring developer.
The header background is actually small pattern image that is repeat. For your large image, I recommend to use 1600px width image for header.
You can use image for menu as well.
For logo center you need to remove social icon from the header first.
September 24, 2013 at 1:22 pm in reply to: Updating from My Account…where is the actual download link in My Account? #15001Sakin
Keymaster@Luis: Sorry Lusi, I cannot find your account to fix it. Can you contact to our sales directly with you account username and email address at http://catchthemes.com/contact-us/
Sakin
Keymaster@tomwyka: You can add parent and child menu from “Appearance => Menus”. See this http://en.support.wordpress.com/menus/#changing-the-order-creating-sub-menus
Sakin
Keymaster@shamwow: Please don’t add email signatures and reply here. This is public forum.
I just check in your links and found that is added from css of wolfnet-idx-for-wordpress plugin. The only image shadow in your logo soflims is added from our theme. You can remove that by adding the following CSS in “Appearance => Theme Options => Custom CSS” box.
.page .entry-content img { box-shadow: none; }For that listing you need to contact plugin author to fix the css issues. They have following CSS which is giving issue.
.wolfnet_widget.wolfnet_featuredListings .wolfnet_listing .wolfnet_listingImage img, .wolfnet_widget.wolfnet_listingGrid .wolfnet_listing .wolfnet_listingImage img { border: 1px solid #EBEBEB; box-shadow: 0 5px 10px rgba(153, 153, 153, 0.25); height: 95px; }If you look that the css, it’s height is fixed 95px. So, as per this plugin your email should be of same proposant.
Sakin
Keymaster@rgcoles: There is nothing in the dropbox link you shared. for updating check this theme instructions at http://catchthemes.com/theme-instructions/catch-box-pro/
-
AuthorPosts
