Navigation überspringen

[Gelöst] how do i fix this?

This support ticket is created vor 1 years, 2 months. There's a good chance that you are reading advice that it now obsolete.

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.

Dieses Thema enthält 3 Antworten, hat 2 voices.

Zuletzt aktualisiert von Christopher Amirian vor 1 years, 2 months.

Assistiert von: Christopher Amirian.

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

versteckter Link

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

#2721876

Christopher Amirian
Unterstützer

Sprachen: Englisch (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
Unterstützer

Sprachen: Englisch (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.