Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@mohossain: I don’t know what you are trying to do as you have added logo outside the header.
Sakin
Keymaster@LogoSystems: There is one option to for that. Build child theme and then copy page-blog.php and on that page edit the line
$blog_query = new WP_Query( array( 'post_type' => 'post', 'paged' => $paged ) );
to
$blog_query = new WP_Query( array( 'post_type' => 'post', 'paged' => $paged, 'order' => 'ASC' ) );then you can add blog template to any page.
Sakin
Keymaster@ianroach: I am bit confused. Do you mean to add the image as the background instead of color or you want additional featured image?
Sakin
Keymaster@Bee1derful: You can remove the css that I gave you earlier. As you have used the logo and the search bar. It will not work. So, you have to try in padding left. So, you can just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
@media screen and (max-width: 960px) { #header-left { padding-left: 28%; } }Sakin
Keymaster@Potzas: The css that you have added is good. But the image that you have added to replace is too large. that is why it is not displaying. Since, you have added the height and width as 20px. It will show only the 20px of the image you have added.
Sakin
Keymaster@klhaight: You can add the following css and change the padding of header as per you need.
#branding hgroup { padding: 2.5em 0; }I see that you have already remove the links from your pics and your signature in your posts.
You can add the following CSS to change the font size of the date.
.entry-meta .entry-date { font-size: 12px; }To remove by admin, just add the following css
.single-author .entry-meta .by-author { display: none; }Sakin
Keymaster@1902: It should work if you have followed the step.
Try this. Just go to “Appearance => Featured Post Slider => Add Slider Options”. Then add the ID 1902 in Featured Slider Post #1 box and 102 in Featured Slider Post #1. Then save it.If you cannot get the slider, then try disabling plugin one by one. If it still doesn’t work then let me know it. I will contact though email and check in your server.
Sakin
Keymaster@acanthuroid: Yes we try to keep our pro theme compatible. But not sure about all th features. So, can you explain what is the problem and send me the url for the problem page.
Sakin
Keymaster@jwendell: Logo cannot be different on different page. It is for branding and will be same for all. If you wan to change then you need to hire developer and build child there where you need to add is_home condition.
Sakin
Keymaster@aceenrichment: Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
.entry-content img { box-shadow: none; }Sakin
Keymaster@GAHC: Did you upgrade the theme or change anything. As your site it working fine in IE8. I just check it now.
Can you refresh your browser and check now.Sakin
Keymaster@ncmh-cardiff: Yes, this is more technical question and you need to know about the development to change this.
For this you need to build child theme and then in your child theme functions.php you need to remove the featured content action hook and add it back with different location. See the example below.
// Remove the homepage featured content remove_action( 'catcheverest_main', 'catcheverest_homepage_featured_display', 10 ); add_action( 'catcheverest_after_main', 'catcheverest_homepage_featured_display', 10 );Sakin
Keymaster@Nixos: If you purchage with “Buy Now: Instant Activation” button then you wil be access instantly. But if you use “But Now: Manual Activation” button then you will have to wait for our sales to create account for you.
Sakin
Keymaster@klhaight: To change the code you need to build child theme and edit the function. But there is easy to to just adjust the css. But to send you the css, I need to check your site. So, please send me your site URL.
Sakin
Keymaster@mattematica: Ok thanks for your feedback, will add the site title hover color options.
Good Idea, will move the custom css to the last. But to make your css propriety just ad the parent.
#branding #site-title a { font-family: Lobster,sans-serif; }Sakin
Keymaster@s-design: for changes in menu js. Just create function in your child theme functions.php which remove the patent theme js and add new js. See the example function as below.
function catcheverest_remove_scripts() { // Remove parent theme small menu wp_dequeue_style( 'small-menu' ); // Now register your styles and scripts here } add_action( 'wp_enqueue_scripts', 'catcheverest_remove_scripts', 20 ); -
AuthorPosts
