levito / tt-rss-feedly-theme

Feedly theme for Tiny Tiny RSS
MIT License
643 stars 76 forks source link

Feed Heading Overlapping Favicon #124

Open thomas-333 opened 9 months ago

thomas-333 commented 9 months ago

Hi

A recent tt-rss commit has broken the formatting in the article view. The feed header now overlaps with the favicon. I have confirmed that this isn't a tt-rss issue.

See here:

https://community.tt-rss.org/t/feed-heading-overlapping-favicon/6295/3

thomas-333 commented 9 months ago

In case this helps anyone else I'm no coder however I have managed to "fix" this, at least for me:

At position 90,371 in feedly,css is:

.feed-title .title{letter-spacing:.05em;

Change this to read:

.feed-title .title{margin-left:25px;letter-spacing:.05em;

And then save the file as something like feedly-fixed.css in themes.local. You can then select this fixed theme in tt-rss prefs

thomas-333 commented 8 months ago

Just to add to this in case this helps anyone else.

The better way to fix this is using the following custom css in tt-rss prefs:

.feed-title .title { 
   margin-left:25px;
}