Skip Navigation

[Resolved] Links going beyond the div inside the loop

This thread is resolved. Here is a description of the problem and solution.

Problem:
The user has some links that go beyond their parent sections.

Solution:
This is a theme styling issue and can be fixed with custom CSS code:

.tb-fields-and-text a {
    overflow-wrap: break-word;
}
This support ticket is created 4 years, 1 month ago. 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.

Sun Mon Tue Wed Thu Fri Sat
9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 - - 9:00 – 13:00
14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 - - 14:00 – 18:00

Supporter timezone: Africa/Casablanca (GMT+01:00)

This topic contains 2 replies, has 2 voices.

Last updated by Piotr_M4693 4 years, 1 month ago.

Assisted by: Jamal.

Author
Posts
#1815991

Can you tell me why on some links are going behind the block (as shown on the attached pic)

on the organisations search page hidden link

#1816063

It seems that this is caused by the theme styles. I was able to fix it by adding the following CSS code to the view, check this screenshot hidden link

.tb-fields-and-text a {
    overflow-wrap: break-word;
}
#1820493

Thats solved the issue, Thanks