Jump to content

Featured Replies

Posted

How I can change the color of icons on top bar?

image.png

Add to custom.css:

#elUserNav > li > a {
    color: #000;
}

 

Edited by aXen | 1s2k

  • Author
7 hours ago, aXen | 1s2k said:

Add to custom.css:


#elUserNav > li > a {
    color: #000;
}

 

Thank you so much. 

This answer helped a lot. 

  • Author
7 hours ago, aXen | 1s2k said:

Add to custom.css:


#elUserNav > li > a {
    color: #000;
}

 

image.thumb.png.4910599bbdef71b8944b4c001017deaf.png

Is it possible to change this search window color by CSS?

If you want change text color:

#elSearch input[type="search"]::placeholder {
	color: #fff;
}

If you want change background color and the color of the text being entered:

#elSearch input[type="search"] {
	background-color: #fff;
	color: #fff;
}

 

Edited by aXen | 1s2k

Recently Browsing 0

  • No registered users viewing this page.