Z
Z
zooks2015-04-22 01:04:41
css
zooks, 2015-04-22 01:04:41

How to make adaptive design on Livejournal (LJ)?

The other day I discovered that LJ blogs open disgustingly on mobile devices.
Livejournal theme styles can be customized here:
www.livejournal.com/customize/options.bml?group=cu...
However, all this rests on the absence of a tag
<meta name="viewport"...
and old HTML4 doctypes go to the heap.
Is there a normal adaptive theme in LiveJournal, and is it possible to adapt the old one for mobile?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
Z
zooks, 2015-12-31
@zooks

The solution is to add the Default Theme - Air, which has a mobile version.
The appearance of the feed (friend feed) can be set through the Stylish plugin.

R
Roman, 2015-04-22
@llgruff

I have not seen good templates for LJ, look at what topics TOP uses , maybe there is something.
Try using media queries to complement the CSS for the old theme, like so:

@media only screen and (min-width: 768px) and (max-width: 959px) {
/* правила */
}
@media only screen and (max-width: 767px) {
/* правила */
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question