Support » Theme: Customizr » Featured Pages images on Home Page remain large, no expansion

Viewing 13 replies - 1 through 13 (of 13 total)
  • Thread Starter staceyk

    (@staceyk)

    1) http://www.themesandco.com/snippet/change-featured-pages-zoom-effect-square/
    2)

    .widget-front .round-div{
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform: scale(1.4);
    }

    Thread Starter staceyk

    (@staceyk)

    Worked, thank you!

    Good. Would you mind marking this topic as resolved?
    Thanks. 🙂

    Thread Starter staceyk

    (@staceyk)

    ok

    Thread Starter staceyk

    (@staceyk)

    Question is there any way to make the featured pages be circles again? I tried removing the above code but they are still square.

    My code above? That one was the answer for the question 2)
    But you want to take back circles, so you had to remove the code for the question 1)

    Thread Starter staceyk

    (@staceyk)

    I may have to leave them square…when I remove the problem piece of code, the top of each circle is missing due to some verbiage I put in there.

    Ah, I see, well you can make the “verbiage” area of your pic smaller, keeping the overall pic size the same

    Thread Starter staceyk

    (@staceyk)

    It’s not the verbiage included with the featured pages that is causing the issue from what I can see, it’s actually the additional verbiage that I added to the functions.php file.

    add_filter(‘tc_fp_block_display’, ‘content_before_fp’);
    function content_before_fp($html) {
    $before_fp = ‘<h3><span class=”grace_welcome”><p style=”text-align: center;”>Welcome to G.R.A.C.E. We look forward to helping you discover more about the amazing world of greyhounds. Feel free to contact us with any questions. We love to talk about our greyt hounds!</p></span></h3>’;
    //Put your HTML inside this var
    return $before_fp.$html;
    }

    add_filter(‘tc_slider_display’, ‘content_after_slider’);
    function content_after_slider($html) {
    $after_slider = ‘<h1><span class=”greyhounds”><p style=”text-align: center;”>Greyhounds, Greyhounds, Greyhounds</p></span></h1>’; //Put your HTML inside this var
    return $html.$after_slider;
    }

    Thread Starter staceyk

    (@staceyk)

    I’m also trying to figure out how to change the padding between those 2 items above…I’ve been using firebug to look at my site and others, but not grasping the concept apparently.

    Probably you are interested in margins.
    Everything would be much simple if we can see your page.. not just pics

    Thread Starter staceyk

    (@staceyk)

    Well, I am hoping to get the site on a development site tonight…if so, I’ll post the page/link.

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Featured Pages images on Home Page remain large, no expansion’ is closed to new replies.