Forum Replies Created

Viewing 20 posts - 11,641 through 11,660 (of 14,507 total)
  • Author
    Posts
  • 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.

    in reply to: Centering menu bar #11145
    Sakin
    Keymaster

    @victoria: Send me your site URL?

    in reply to: Resize the featured image inside a post #11144
    Sakin
    Keymaster

    @Anja0625: I cannot access your site. It is showing Database Error. Please fix that and let me know it.

    in reply to: Allow pages for posts slider (and workarounds) #11143
    Sakin
    Keymaster

    @nesciens: That’s nice. Yes, you can simply build child theme and add it like you have done it.

    in reply to: change the website color #11142
    Sakin
    Keymaster

    @kz2284: From color option in your Theme Options panel. Just change the color code of “Header Background Color”

    in reply to: insert finance calculator #11141
    Sakin
    Keymaster

    @jwendell: Contact Form 7 is for creating contact form and all. For Excel, you need to search for other plugins. Try searching in Google.

    in reply to: Side bar now showing #11139
    Sakin
    Keymaster

    @empeyzee: There is only one trick to do that.
    1. Just create the page and add your image which you have it in your homepage featured content section.
    2. Select that page as “Front page” from “Settings => Reading” and check “A static page (select below)” and select that page.
    So this way you will have your page with sidebar.
    3. Then you can disable your Featured Homepage Content from “Appearance => Theme Options => Homepage Settings => Homepage Featured Content Options”.

    in reply to: Customise bullets #11138
    Sakin
    Keymaster

    @Potzas: You don’t have to change anything is style.css . You should just add the following css in “Appearance => Theme Options => Custom CSS” box.
    image path means the url of the image.

    Like the image path of our logo is http://i0.wp.com/catchthemes.com/wp-content/uploads/2012/06/logo.png

    in the same way you need to add the image path. If for example, you want to add our logo then it will be as.

    #controllers a {
        background: url("http://i0.wp.com/catchthemes.com/wp-content/uploads/2012/06/logo.png") no-repeat scroll 0 0 transparent;
        height: 10px;
        width: 10px;
    }
    #controllers a:hover, #controllers a.active {
        background: url("http://i0.wp.com/catchthemes.com/wp-content/uploads/2012/06/logo.png") no-repeat scroll 0 0 transparent;
    }
    in reply to: Bug with non-standard browser default font size #11137
    Sakin
    Keymaster

    @nesciens: Sorry I don’t understand all these. Can you tell me what are you trying to do in your site?

Viewing 20 posts - 11,641 through 11,660 (of 14,507 total)