Personal URLs in Authors widget

Posted in: Newspaper
Post count: 14

Hello. URLs of authors in the Authors widget do not wrap within the Sidebar’s width. Please help me resolve this issue ASAP.

Misaligned Authors URLs

Thank you.

Post count: 22421

Hello,

Unfortunately if the URL is too big it will overflow. Please use this code in the theme panel-> custom css:
.td-author-url{
overflow:auto!important;
}

Thank you!

Post count: 14

Unfortunately, it doesn’t solve the issue.

Post count: 22421

Please provide a link to your site pointing at the issue so I can inspect it
Thank you!

Post count: 14

Unfortunately I’m developing the website using offline server (running MAMP). I’ve tried many combinations trying to target the specified class — both in custom CSS and style.css in the child theme with no effect. Any suggestions?

Post count: 22421

Unfortunately if I cannot see the issue I cannot say what it is. Please provide a screenshot if you cannot provide a link. But a bigger screenshot so I can see the url and figure out what page is this on. Is it the author box on posts? is it the author box element on pages? Provide more details so I can provide a proper solution
Thank you!

Post count: 14

It is Authors widget in a sidebar which is shown website-wide.The widget is filtered by role of user: Author and Editor. The subtheme used is “Say what”.

The address is at localhost:8888.

Post count: 22421

Hello,

Try this code in the them panel-> custm css box:
.td_block_authors{
overflow:auto;
}

Thank you!

Post count: 14

Thank you — the code seems to cut the address at the Sidebar’s width. Just is case: is there an code that could show the whole address, but instead of breaking it — by breaking it into 2-3 rows?

If not, thank you for your timely help.

Post count: 22421

Hello,

If the scroll method is not working for you then you can try to use this css to limit the code from overflowing the content:

.td_top_authors .td-authors-url {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: block;
}

Thank you!

Viewing 10 posts - 1 through 10 (of 10 total)
The forum ‘Newspaper’ is closed to new topics and replies.