Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #13188

    Hi,

    Is there a way to insert a sidebar widget next to the slider in Simple Catch Pro, so that it will have Catch Box’s slider-aligned-with-sidebar layout? I’m currently using Catch Box for my website http://www.pimpleprogress.com and I want to buy Simple Catch Pro because I prefer its layout for blog posts, but I won’t do that if I can’t maintain the same slider/sidebar layout that I currently have with Catch Box.

    Please let me know if this is possible. Thank you!

    #13226
    Sakin
    Keymaster

    @pimpleprogress: That’s not possible with default layout. But yes, if you have developer, who can work on customization then you can do that.

    #13232

    Thanks Sakin! I think I’ll upgrade to Catch Box Pro, but is there a way to get blog posts in Catch Box Pro to appear as they do on the homepage demo for Simple Catch Pro? Basically I would like the featured image to the left of the featured text, instead of above the featured text. Can you let me know if the Catch Box Pro layout allows that, or if there’s a particular code I can use to make that change?

    Thanks again for your help!

    #13234
    Sakin
    Keymaster

    @pimpleprogress: To make it exact same you need to edit the code and for that you need developer. But to make it image on left with content on right, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .home .hentry .entry-summary img.wp-post-image {
        margin-right: 3%;
        max-width: 35%;
    }
    #13242

    Thank you for being so patient with me! Your CSS put the image to the left of the excerpt text, but the excerpt is underneath the image instead of to the right. You can see it here: http://pimpleprogress.com/.

    Do I have to change the margin or padding of the excerpt text to move it to the right of the image? Or is there a way to convert the featured images into thumbnails on pages?

    Thank you again for your advice and time!

    #13245
    Sakin
    Keymaster

    @pimpleprogress: sorry, I forgot to add float. So, replace the previous css with the following
    .home .hentry .entry-summary img.wp-post-image {
    float: left;
    margin-bottom: 10px;
    margin-right: 3%;
    max-width: 35%;
    }

    #13255

    That worked! I appreciate your help with this, thanks again!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Change Simple Catch Pro slider format to Catch Box slider format’ is closed to new replies.