Jump to content

Announcement: UserStyle to eliminate "Read more" links in news items


NYPup2Train
 Share

Recommended Posts

If anyone is interested, I've published a simple UserStyle to disable the "read more" links in news items, and just show the full content automatically. You can install it using an appropriate style-management extension (like Stylus for Chrome or Firefox) from its listing page at userstyles.world:

https://userstyles.world/style/7651/gayharem-remove-read-more-links-from-news-items

Link to comment
Share on other sites

  • 1 month later...
On 12/7/2022 at 3:34 PM, BoyTopper said:

Firefox doesn't need any extension to use custom CSS, just put it in %userprofile%/chrome/UserContent.css

That's true, but style extensions allow you to scope a given set of changes to a particular site (or even particular page), to avoid side-effects messing up other sites you visit. There are only so many different combinations of tags, classes, and IDs out there, and if all of your custom CSS is global it isn't long before an adjustment made to one site has undesirable side-effects somewhere else.

(The selectors for the Kinkoid news posts, for example, are:

#popups #popup_news .news_page_content .news_page_text { }
/* ...and... */
#popups #popup_news .news_page_content .read_more { }

That's pretty generic.

Link to comment
Share on other sites

27 minutes ago, NYPup2Train said:

That's true, but style extensions allow you to scope a given set of changes to a particular site

I suggest you to learn the specs ;) You could do the same by @-moz-document declaration. For example:

@-moz-document domain(www.gayharem.com)

{your rules here}

 

Edited by BoyTopper
  • Like 1
Link to comment
Share on other sites

  • 2 months later...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...