Skip Navigation

[Resolved] how do i fix this?

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

This topic contains 3 replies, has 2 voices.

Last updated by Christopher Amirian 3 months, 2 weeks ago.

Assisted by: Christopher Amirian.

Author
Posts
#2721342
Screen-Shot-2024-08-17-at-9.38.jpg

hidden link

Okay, how do I CSS this to fix that extra length? Thanks.

#2721876

Christopher Amirian
Supporter

Languages: English (English )

Hi there,

This is something that you need to call the theme developer of your website to fix. We would be happy to help to give you pointers for CSS but the link you provided does not have the section you gave the screenshot to.

#2723746
Screen-Shot-2024-08-19-at-9.52.jpg

Lol, Christopher, I am "the theme developers."

This is an image of a view that is attached to every post. It shows "What's Nearby" by zip code.

When It's full of posts (6) it's fine. When there are fewer than 6, well, you see the mess.

Need to know anything else? Thanks.

#2724504

Christopher Amirian
Supporter

Languages: English (English )

Hi there,

Ok if you are the developer then you should know that the image inside a container need to have a width of 100% to stretch and fill the whole container and also you have another code that caps the width of the blue section to 600px that causes issues.

Those are not Toolset related things.

Here is my suggested code but we can not support the code in the future as it is not part of Toolset:

.nearby-box img {
	width: 100%;
}

.nearby-box .nearby-content {
	padding-right: 0;
	max-width: 100%;
}

Thanks.