« Web, HTML, Tech Forum

Filter help..

I want to add a blue filter over the friends section only but so far haven't learnt how to ^.^;

I need all friend's pfps to somewhat match the color scheme of my profile, but I don't want the color filter to be over the whole page.

All help is appreciated ^.^;



Report Topic

2 Replies

Sort Replies:

Reply by sudofry

posted

I think this might be what you're asking for? The hue-rotate number can be altered to fine tune the color how you want.



Just friend section.



.person a img {
filter: sepia(100%) saturate(300%) brightness(70%) hue-rotate(180deg);
}


Friends and comments section.


.person a img, .comments-table td:first-child img:not(.icon) {
filter: sepia(100%) saturate(300%) brightness(70%) hue-rotate(180deg);
}


Permalink Report Reply

Reply by ଘ( ཫ . ᵔ )

posted

Ty!! It worked ^.^


Permalink Report Reply