Passer la navigation

[Résolu] how do i fix this?

This support ticket is created Il y a 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.

Ce sujet contient 3 réponses, a 2 voices.

Dernière mise à jour par Christopher Amirian Il y a 1 years, 2 months.

Assisté par: Christopher Amirian.

Auteur
Publications
#2721342
Screen-Shot-2024-08-17-at-9.38.jpg

lien caché

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

#2721876

Christopher Amirian
Supporter

Les langues: Anglais (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

Les langues: Anglais (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.