Page 1 of 1
					
				Categories Color
				Posted: Tue Apr 29, 2014 4:14 pm
				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.
			 
			
					
				Re: Categories Color
				Posted: Tue Apr 29, 2014 6:51 pm
				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
 
			
					
				Re: Categories Color
				Posted: Tue Apr 29, 2014 7:41 pm
				by vander.goulart
				Still orange...  
 
 
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. 
			
					
				Re: Categories Color
				Posted: Tue Apr 29, 2014 7:46 pm
				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
 
			
					
				Re: Categories Color
				Posted: Tue Apr 29, 2014 8:20 pm
				by vander.goulart
				Perfect!  
 
 
Pretty cool now.
Thank you so much,Thorsten.