was zum spielen.

ich habe dem blog zwei neue erscheinungsbilder hinzugefügt und etwas dran rumgebastelt, damit es zusammen passt.

das itheme und mein alter favorit “vistered little“.

das lustige am itheme ist, daß man die boxen an der seite einklappen und vertikal rumschieben kann.
und vistered little hat unterschiedliche hintergrundbilder und ist auch sonst ziemlich schick.
außerdem unterstützen beide themes die inzwischen nicht mehr ganz so neue widget-technik. das heißt im admin bereich kann man durch simples drag and drop die anordnung boxen an der seite ändern – unter anderem sehr praktisch um den bei blogs sehr üblichen kalender rauszuschmeißen. den will ich nicht. da bekomme ich immer nur ein schlechtes gewissen, daß ich schon so lange nix mehr geschrieben habe.

leider waren an VL einige modifikationen notwendig. die konfiguration der widgets war etwas anders als das üblich ist. die genauere dokumentation habe ich auf der seite der programmierer hinterlassen. und der vollständigkeit halber gibt es sie hier nochmal nach dem link. (auf englisch)

first: its a wonderful theme. thank you.
but it has some glitches.
one of them is that you can not use multiple themes (via a theme switcher) an the widgets.
because the first widget-config-area is the one for the banner on top of the posts. normally i don’t place anything there. in order to put all the widgets that are supposed go into the the sidebar are put into the second widget-config-area.

but when you now switch to another theme, this setting remains somehow and the new theme tries to get the widget information from the banner-area, which is empty.

unfortunately the code is far too complicated for me to fully understand. nevertheless i’ve managed to change the positions of the widget-config-areas. so now the sidebar config is the first one and can also be used by other themes.

as far i can see, nothing is messed up.

here is what i’ve done in the functions.php (line 311 to 328):

if ( function_exists('register_sidebar') ) {
register_sidebar(array(
'name' =] __('Sidebar', VL_DOMAIN),
'before_widget' =] '[div class="menubefore"][/div][div class="menu"]',
'after_widget' =] '[/div][div class="menuafter"][/div]',
'before_title' =] '[h4]',
'after_title' =] '[/h4]'
));

if( !function_exists('get_theme_option') || get_theme_option('quadpossidebar') != 'quad' ) {
register_sidebar(array(
'name' =] __('Banner', VL_DOMAIN),
'before_widget' =] '[div class="post"]',
'after_widget' =] '[/div]',
'before_title' =] '[h4]',
'after_title' =] '[/h4]'
));
}

(replace the [] with the proper ones to work)
basicly the arrays have changed position.

perhaps you find it as useful as i did and can implement in a future release.