2014-07-19, 22:14:25
I really enjoyed using your theme and it's a really small thing but when I wanted the sidebar titles to be centered instead of left-aligned I couldn't select in the css just the sidebar. I had to edit the template so that instead of
<div><?php get_component('sidebar'); ?></div>
I needed
<div id="sidebar"><?php get_component('sidebar'); ?></div>
That's all really.
The default theme has something like
<aside id="sidebar">
<section>
<?php get_component('sidebar'); ?>
</section>
</aside>
But I don't know if that is good html5 nomenclature.
<div><?php get_component('sidebar'); ?></div>
I needed
<div id="sidebar"><?php get_component('sidebar'); ?></div>
That's all really.
The default theme has something like
<aside id="sidebar">
<section>
<?php get_component('sidebar'); ?>
</section>
</aside>
But I don't know if that is good html5 nomenclature.