Recent Topics

1 Dec 12, 2009 16:26    

My b2evolution Version: Not Entered

My b2evolution Version: 3.3.2

I was wondering if there is a way to add a style (color, font etc..) just to subcategories?

Is there an existing element in the style.css that would allow this? or is there something that needs to be created?

Any help is greatly appreciated.

Vic

2 Dec 13, 2009 15:37

Anyone? I'm sure someone has done this before. All I want to do is have the Subcatergories displayed in a different color then the parent Category.
I searched the forum to no avail.

So far it seems I can only change the overall sidebar links color in style.css:

#sidebar a {
color:#990000;
text-decoration: none;
font-family: Arial;
font-size: 10pt;
}

Any help is greatly appreciated. Thanks!

3 Dec 13, 2009 16:36

A link to your blog would be most helpful ;)

¥

4 Dec 13, 2009 16:49

it's on an intranet, no public access :(

5 Dec 13, 2009 16:53

I am using the Crystal Chandeliers blog theme if that helps.

6 Dec 13, 2009 17:16

Not really, is there no css path you can "follow"?

Can you post the html output for that section of your skin?

¥

7 Dec 13, 2009 17:40

<li class="widget_core_coll_category_list">
	<h2>Categories</h2>
	<ul>
		<li><a href="/blog6.php">All</a></li>
		<li><a href="/blog6.php/employee-comments/">Employee Comments</a>
			<ul>
				<li><a href="/blog6.php/employee-comments/john/">John</a></li>
				<li><a href="/blog6.php/employee-comments/joe/">Joe</a></li>
       	</ul>
   	</li>
	</ul>
</li>

I would like to be able to change the style of the John and Joe items.
I tried this entry and it unfortunately effects the entire list:

#sidebar ul li ul li a {
color: #990000;
}

8 Dec 13, 2009 17:44

.widget_core_coll_category_list ul ul li a{
color:#f00;
}

.widget_core_coll_category_list ul ul li a:hover{
color:#0f0;
}

Helps?

¥

9 Dec 13, 2009 17:48

yyesss!!

you rock!

Many many thanks. :o


Form is loading...