Categories Color

You made an own skin or theme for phpMyFAQ. You can share it here with others!

Moderator: Thorsten

Post Reply
vander.goulart
Posts: 3
Joined: Tue Apr 29, 2014 4:12 pm

Categories Color

Post by vander.goulart »

Hello.

How do I change the categories color on the left content list?
I'm looking for that in style.min.css, but can't get it changed.

By default, its color is orange, and I'd like to change it.

I'm using V. 2.8.8.
Thorsten
Posts: 15560
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Re: Categories Color

Post by Thorsten »

Hi,

here it is: https://github.com/thorsten/phpMyFAQ/bl ... .css#L6417

This should work:

Code: Select all

#content .categories li { color: blue; }
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
vander.goulart
Posts: 3
Joined: Tue Apr 29, 2014 4:12 pm

Re: Categories Color

Post by vander.goulart »

Still orange... :roll:

I tried this way:

Code: Select all

#content .categories{padding:8px 0;font-size:15px}
#content .categories li { color: blue; }
#content .categories .users-online{padding:10px;text-align:center}
I tried this way:

Code: Select all

#content .categories{padding:8px 0;font-size:15px;color: blue;}
#content .categories li { color: blue; }
#content .categories .users-online{padding:10px;text-align:center}
I tried this way:

Code: Select all

#content .categories{padding:8px 0;font-size:15px;font-color: blue;}
#content .categories li { color: blue; }
#content .categories .users-online{padding:10px;text-align:center}
Should no longer be a place in the source code where line color is orange already, and, if we need to change the color we could just simply locate it and change it?
By the way, thank you so much for the rapid response.

Important note: I'm editing style.min.css, because by editing style.css does not affect any content of the template.
Thorsten
Posts: 15560
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Re: Categories Color

Post by Thorsten »

Hi,

sorry, I was wrong, it should be

Code: Select all

    #content .categories li a { color: blue; }
as the anchor is the important tag you want do style.

I'll do changes in the LESS file and compile it to CSS.

bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
vander.goulart
Posts: 3
Joined: Tue Apr 29, 2014 4:12 pm

Re: Categories Color

Post by vander.goulart »

Perfect! :P
Pretty cool now.

Thank you so much,Thorsten.
Post Reply