Next Theme

Skinning and designing Serendipity (CSS, HTML, Smarty)
kybernator
Regular
Posts: 135
Joined: Sat Sep 22, 2012 10:15 pm

Re: Next Theme

Post by kybernator »

OK, considering all your points, and the fact that responsiveness (and, at the same time, accessibility, which often go hand in hand) is quite important to me, it might be wisest not to use tables. Thank you for the explanations.
yellowled
Regular
Posts: 7111
Joined: Fri Jan 13, 2006 11:46 am
Location: Eutin, Germany
Contact:

Re: Next Theme

Post by yellowled »

kybernator wrote:OK, considering all your points, and the fact that responsiveness (and, at the same time, accessibility, which often go hand in hand) is quite important to me, it might be wisest not to use tables.
Semantically, an ordered list might make sense. The list items of that ol could contain a description list.

Code: Select all

<ol class="plainList">
    <li><dl>
            <dt>Datum</dt>
            <dd>DD.MM.YYYY</dd>
            <dt>Uhrzeit</dt>
            <dd>HH:MM</dd>
            ...
        </dl>
    </li>
    ...
</ol>
(plainList is a class that come with the s9y core and removes the item numbering and the padding on the left of the ol or ul.)

However, that might be a bit over the top and hard to handle with a WYSIWYG editor.

YL
kybernator
Regular
Posts: 135
Joined: Sat Sep 22, 2012 10:15 pm

Re: Next Theme

Post by kybernator »

yellowled wrote:However, that might be a bit over the top and hard to handle with a WYSIWYG editor.
Especially since CKEditor "im Auslieferungszustand" eats up description list markup - but that can be overcome :-)
u1amo01
Regular
Posts: 273
Joined: Fri Sep 28, 2007 3:55 pm
Location: Kurpfalz, Germany
Contact:

Re: Next Theme

Post by u1amo01 »

Maybe you know this already, maybe not: if there is no user.css in the next theme directory, s9y will use the user.css of 2k11 instead (if there is one).

Solution maybe the same as noted in the clean-blog thread: just put a epmty user.css into the next directory. (works with clean blog, not tested yet with next)
yellowled
Regular
Posts: 7111
Joined: Fri Jan 13, 2006 11:46 am
Location: Eutin, Germany
Contact:

Re: Next Theme

Post by yellowled »

u1amo01 wrote:(works with clean blog, not tested yet with next)
It will work with Next as well. The whole user.css thing is no longer specific to themes, it's in the core now.

YL
Post Reply