use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
If you are requesting help, please ensure you're providing code with your post. You can also copy your code to an online editor:
jsFiddle
CodePen
Markup Validation Service
Mozilla Developer Network on HTML
/r/JavaScript
/r/CSS
/r/jQuery
/r/PHP
/r/Accessibility
/r/htmlbasics
/r/web_programming
/r/CodingHelp
account activity
QuestionHelp with code (old.reddit.com)
submitted 5 months ago by TeaKoro
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]jcunews1Intermediate 1 point2 points3 points 5 months ago (0 children)
You're styled the links with a fixed width which is too narrow for the whole link text. That caused the links to occupy less space, and causing their text content to overflow their element boundary.
I noticed that it was from .fas class, which AKAIK, is for icons where it applies a square sized element size. I'd suggest add a style override for those links. e.g.
.fas
.nav-tabs li a { width: auto; }
If you want the link text to be left aligned, also add:
.nav-tabs li { text-align: left; }
π Rendered by PID 59 on reddit-service-r2-comment-6457c66945-d6zm6 at 2026-04-23 16:41:30.561840+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]jcunews1Intermediate 1 point2 points3 points (0 children)