Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@mattsmith701: Thanks for your screenshot. I will change that.
Sakin
Keymaster@fx: It is showing fine to me. You have installed WP Super Cache plugin. So, first you need to clear your cache and refresh your browser to see the changes.
Sakin
Keymaster1) I’d prefer not to use a large logo. When I upload something moderately sized like the logo I currently have, it loses some of its quality, especial in the outsides of the blue portion that I then have to crop. Is there a way to upload any-sized logo I want without have to worry about a loss in image resolution?
— You can crop using your Photo Editor and have the best quality logo. Then upload it though “Appearance => Header”, then after upload you will see ”
Crop Header Image” section. There you just Click on the Button “Skip Cropping, Publish Image as Is”.2) Is there a way to bring the logo and search bar closer to the nav bar and eliminate much of the remaining white above them? I’m already using this code but it only eliminated a portion:
— That css is useless. If you want to reduce the padding top and bottom, adjust the padding as per you need and add the following CSS in “Appearance => Theme Options => Custom CSS” box.#site-logo,.header-sidebar { padding-top: 40px; } #hgroup-wrap { padding-bottom: 40px; }3) Am I able to move everything in the nav bar to the left? I don’t like them centered.
— Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
#header-menu ul.menu { text-align: left; }Sakin
Keymaster@mattsmith701: You can simple upload your screenshot in your own site or any photo sharing site and then add in your screenshot url.
Sakin
Keymaster@fx: I see empty blockquote in that page, you can go to your editor in text mode and delete it. But if you want to change the color for blockquote then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
blockquote { background-color: #000; }Sakin
Keymaster@fx: For details color options, upgrade to Catch Everest Pro Theme.
1. I would like to return the bottom bar with the name of wordpress but smaller and change the color (black and white).
— To change the background color or footer site generator, You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
#site-generator { background-color: #000; }2. Then I need to place a banner (image) just below the menu (throughout).
— For this you need to upgrade to Catch Everest Pro Theme, where there is Featured Image Option.3. I also have a problem with the color of page titles that are black (not white).
— You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
`.widget-title, .entry-header .entry-title { color: #fff; }4. And last, I always have a white box below the blog (i need to remove it).
— I don’t understand this one.Sakin
Keymaster@elh148: You can just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
#header-content { margin: 0; padding: 0; }Sakin
Keymaster@mattsmith701: The latest version for Catch Everest Pro is 1.3 only. See here http://catchthemes.com/themes/catch-everest-pro/.
I don’t know where you got that info for. Can you send me your screenshot?
Sakin
Keymaster@Hank: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
/* Footer Text color */ #site-generator { color: #999; } /* Footer Link Color */ #site-generator a { color: #ddd; } /* Menu Text color */ #header-menu ul.menu a { color: #eee; } /* Sub Menu Text color */ #header-menu ul.menu ul a { color: #fff; }Sakin
Keymaster@markTSL: Sorry that is not possible with the current setting. You need to build child theme and then register another menu for right side and then add in the css. So, for this you need to hire customizer
Sakin
Keymaster@tault: You need to change the color code as your need. The code is fine. For example if you want to make pink like your background then it will be as below:
#main { background-color: #da0059; }Sakin
Keymaster@wendell.laurent: If you are working on child theme and want to remove comment from the pages only. Then you can copy comments.php and just add following code, just above the text // Standard WordPress comments security
if ( is_page() ) { return; }Sakin
Keymaster@ispcolohost: You have to copy your archive.php and search.php and in those file replace the following code
<?php while ( have_posts() ) : the_post(); ?> <?php /* Include the Post-Format-specific template for the content. * If you want to overload this in a child theme then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?>With the following code
<?php while ( have_posts() ) : the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <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> </header><!-- .entry-header --> </div><!-- .entry-container --> </article><!-- .post--> <?php endwhile; ?>Sakin
Keymaster@elielhillel: Just replace the above css as below:
#header-content { margin: 0; padding: 0; }Sakin
Keymaster@tault:
You can manage your site title and header image from “Appearance => Header”. But looks like you have already managed it.You can change the background from “Appearance => Background”.
To change the grey background from the main. You can add the following css in “Appearance => Theme Options => Custom CSS” box.
#main { background-color: #eee; }Sakin
Keymaster@klhaight: It’s from plugin that is why I am not so sure. But you can try adding the following CSS in “Appearance => Theme Options => Custom CSS” box.
#content .entry-content #multiple_slides_visible a { color: #a7a7a5; }Sakin
Keymaster@kat_hello: I have restore your account. Now you should be able to download it from your account at http://catchthemes.com/my-account/. If you still have issue, then you can contact to our sales and account directly at http://catchthemes.com/contact-us/
-
AuthorPosts
