-
SideBar Font Question
In my sidebar I want to have regular text in the same line as my link. Specifically, I have a link that says "Casino Games". In the same "block" I want to put (Full List) after the actual link so it would be "Casino Games - (Full List)" but I do not want Full List to be part of the link. When I do that now it automatically creates a line break and the part that is not linked goes beneath the link. How can make it all stay in the block without wrapping? I tried "white-space:nowrap" but that didn't work.
Any ideas?
Thanks!
-
did you try - display: inline;
-
The links most likely have display:block; which means that it will fill the whole width. display: inline-block; would solve that issue.
Ofc hard to say what the problem is exactly since there are no link to the site ;)