Topic Resolution: Resolved
  • Closed
  • michael espalin
    Spectator
    January 14, 2016 at 12:24 am #23561

    Hello,

    On our blog, onthebanksofsaltcreek.com,

    Two things, both related to image frames:

    On the posts slider, many of the featured images only show the frame on the top and sides, there is no frame on the bottom of the image.

    When I go to the shortcodes menu and change the color and size options for the image frames, it does not make any change on the blog images.

    Can you suggest a fix?

    Thanks,
    Michael

    Denzel Chia
    Moderator
    Posts: 2672
    January 15, 2016 at 9:14 am #23574

    Hi,

    Use the following in Theme Options -> Custom CSS

    .attachment-slider-thumbnail {
    max-height: 260px !important;
    }

    Thank you,
    Denzel

    michael espalin
    Spectator
    Posts: 23
    January 21, 2016 at 6:18 pm #23698

    ok, that worked until I noticed a new post from yesterday that shows an image frame only on 3 sides.

    On the posts slider, when the Fresh Eggs post displays the image frame is not complete. All the rest seem to be fine?

    Also, why am I not able to make changes to the size/color of image frames. When I go into shortcodes/image frame, no matter what settings I choose, it doesn’t effect the blog layout at all?

    Thank you,
    Michael

    Imran
    Spectator
    Posts: 403
    January 21, 2016 at 11:15 pm #23716

    Hi Michael,

    Thanks for writing in!

    On the posts slider, when the Fresh Eggs post displays the image frame is not complete.

    Any new post won’t get affected by image frame shrinking. Please add the following code under your Theme Options -> Custom CSS

    #slide_holder .featured-thumbnail img {
    max-height: 260px;
    }

    why am I not able to make changes to the size/color of image frames.

    By the following code you can set any background color to your image frame. Please add the following code instead the above in order to set a different background color:

    #slide_holder .featured-thumbnail img {
    max-height: 260px;
    background-color: #000000;
    }

    Hope this helps!

    Thanks.

    michael espalin
    Spectator
    Posts: 23
    January 21, 2016 at 11:30 pm #23717

    Thank you very much, that of course worked.

    Should I remove the previous code Denzel had me place in CSS for the frame re-sizing, or leave it and add this new coding?

    Why do I need to add this custom code when there are clearly options within the theme design that should be making these changes. I am grateful for your help in getting it to display correctly, but I thought the theme options should be able to make those changes without adding custom CSS.

    Michael

    Imran
    Spectator
    Posts: 403
    January 22, 2016 at 10:39 am #23736

    Hi Michael,

    glad that worked!

    Should I remove the previous code Denzel had me place in CSS for the frame re-sizing, or leave it and add this new coding?

    Yes, you can remove any extra codes that are repeating.

    Why do I need to add this custom code when there are clearly options within the theme design that should be making these changes. I am grateful for your help in getting it to display correctly, but I thought the theme options should be able to make those changes without adding custom CSS.

    Where you required a fix; we tried to help you to get over on that. Though, sometimes we provide the custom codes to assist.

    Thanks!