-
I remember I could use custom-css extension for this but after a bug I had to remove that extension and now that I re-added it, I forgot what I added. can someone guide me with this? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Using JS might be more elegant. You can probably change it with JS, see CSSMediaRule. As for pure CSS, I suppose you mean you simply copied everything that's covered under the relevant media query: /*=== MOBILE */
/*===========*/
@media (max-width: 840px) {
/* everything that is written here */
} Or at least I can't really think of any other way to do that with just CSS. |
Beta Was this translation helpful? Give feedback.
-
btw how can I make it so in in mobile view the feed title (not post title) are still shown? |
Beta Was this translation helpful? Give feedback.
OK I did it.
this way.
I copied the mobile part from themes/base-theme/frss.css
and then changed the
@media (max-width: 840px)
to
@media (max-width: 1400px)
now at 100% I am in mobile view and at 90% I am in desktop view.
I am not a web dev so,
sorry if that was what you meant from start.