Forum Replies Created

Viewing 20 posts - 11,621 through 11,640 (of 14,501 total)
  • Author
    Posts
  • in reply to: Logo positioning relative to menu #11191
    Sakin
    Keymaster

    @mohossain: I don’t know what you are trying to do as you have added logo outside the header.

    in reply to: Blog #11190
    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.

    in reply to: Header & Footer #11185
    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?

    in reply to: Center logo? #11184
    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%; } }

    in reply to: Bug with non-standard browser default font size #11183
    Sakin
    Keymaster

    @nesciens: Ok thanks I will check with my development. Do you have any suggestion?

    in reply to: Customise bullets #11182
    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.

    in reply to: Remove Author and Date Text from Posts #11181
    Sakin
    Keymaster

    @elenbahr: Can I know your site URL? I need to check your site to send you the css.

    in reply to: change " posted on" line in post #11180
    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; }

    in reply to: Featured Post Slider Problem #11179
    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.

    in reply to: Adding a full width header image per page #11178
    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.

    in reply to: insert finance calculator #11177
    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.

    in reply to: CSS/HTML for Text widget not working #11176
    Sakin
    Keymaster

    @aceenrichment: Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .entry-content img { box-shadow: none; }

    in reply to: IE8 Issues #11174
    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.

    in reply to: Moving Featured Homepage Featured Posts #11153
    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 );
    in reply to: Download pro version #11152
    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.

    in reply to: Featured Post Slider Problem #11151
    Sakin
    Keymaster

    @evag: Can you send me your site URL?

    in reply to: change " posted on" line in post #11150
    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.

    in reply to: Site Title and Description #11149
    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;
    }
    in reply to: Mini Nav Styling #11147
    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 );
    in reply to: Catagorize Posts Under Pages #11146
    Sakin
    Keymaster

    @victoria: You can just set featured image in your page as well.

Viewing 20 posts - 11,621 through 11,640 (of 14,501 total)