Thank you Roy! ??
I’ve been trying to write a rule using the output class as you mentioned without succes. Anyway I don’t understand very well why there is a space in the output tag “page_item page-item-11″…
I’ve been trying this CSS:
ul #nav li .page_item page-item-11 {
background:#fff;}
in this HTML:
<ul id="nav" class="clearfloat">
<li><a href="<?php echo get_option('home'); ?>/" class="on">Tu web en 3 pasos</a></li>
<?php wp_list_pages('title_li='); ?>
</ul>
In other hand I’ve been trying this (style”background:#fff”) in html without success:
<ul id="nav" class="clearfloat">
<li><a href="<?php echo get_option('home'); ?>/" class="on">Tu web en 3 pasos</a></li>
<span style="background:#000;"> <?php wp_list_pages('title_li=&exclude=185,69,71'); ?></span>
<?php wp_list_pages('title_li=&exclude=185,71,67'); ?>
<?php wp_list_pages('title_li=&exclude=185,67,69'); ?>
</ul>
No problem I think I could do it hard coding, but it could be interesting if there is a way to define styles in lists called dynamically…
Is there some documentation where I can check out this questions, maybe in the wordpress codex or someplace like that?
Thank you ver much.
Roy again, but from Madrid