WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2025 Poal.co

176

My limited css experience from voat was looking for other peoples examples and making small alterations to them for use in my own subs. I understand the code is still under development and could change at any time, and I am interested is customizing my joke sub (assuming the stylesheets are working atm)

I also understand voat css does not work on this site. Any direction you would point me in to get started would be appreciated.

My limited css experience from voat was looking for other peoples examples and making small alterations to them for use in my own subs. I understand the code is still under development and could change at any time, and I am interested is customizing my joke sub (assuming the stylesheets are working atm) I also understand voat css does not work on this site. Any direction you would point me in to get started would be appreciated.

(post is archived)

[–] 0 pt (edited )

https://www.w3schools.com/Css/css_examples.asp

from above and using right click, inspect element in firefox i derived the following:

div.pure-u-1.pure-u-md-18-24

{

background-color: #888888; //works, gray

}

div.score

{

background-color: #888888;

color: blue; //text color

}

div.upvoted

{

background-color: #0000aa; //works, blue

//color: blue; //does not work, icon is image for arrows. // is to comment out text

}

crude, but they work

edit: right click, inspect element, {} style editor, poal.css for raw css codes you can copy/paste into your stylesheet

a:link

{

color: #4646ff !important;

text-decoration: none;

}

.post .title:hover {

background: #c0c0c0;

//color: #fff;

}

a:visited

{

color: #990099 !important;

text-decoration: none;

}

body.dark .post .title:link

{

color: #4646ff !important;

}

body.dark .post .title:visited

{

color: #db73a8 !important;

}

body.dark .post .title:hover

{

background: #404040;

}