I hate the Wayland logo; it’s trash.

unfortunately I cannot find alternatives to the gore subreddits :(

  • 0 Posts
  • 18 Comments
Joined 1 year ago
cake
Cake day: June 11th, 2023

help-circle







  • They have a good system in place where normal users moderate the site; if a comment is disliked by enough users it’s “slimed to death”. It will be harder to find and when you find it you have to click it, to see what it said.

    This doesn’t work well because there aren’t that many users on Odysee compared to Youtube, and the users who are most vocal are not the friendliest people. so those comments aren’t overshadowed by other comments, and sometimes they are the only comments on the video.










  • TL;DR: big elements cause annoying scroll-bars to appear.

    My username is very big, so when I open this page on a mobile I get a horizontal scroll-bar for the entire page.

    In CSS there’s a property called overflow which lets you decide how you want elements that contain elements wider or taller than them to behave. So you can solve this problem by simply making that element itself scroll instead of the entire page by using overflow: scroll, or hide the child elements by using overflow: hidden;.

    You can also solve these problems by dealing with the child elements for example: using the word-wrap property to allow word wrapping, using the hyphens property to break words with hyphens, or in this case use the HTML wbr tag to allow line breaking after every underscore, or even cut the longer words and append three dots to them; so my user name would look like this: “Limitless_s…”.