I've figured out almost everything I need luckily but I still don't understand how to change the color of the text within the interests/links boxes and also how to change the title backgrounds to an image as well? and I still can't figure out how to have a song autoplay on my profile or why my cursors aren't working :( pls helppp >-<
« Web, HTML, Tech Forum
how do i change the color of the interests/links text?
6 Replies
Reply by EngiQu33ring
posted
The interests and links boxes are complicated to address individually. If you want to change anything about them so they both look the same, use:
/* The outer box */.table-section {}
/* The table box */
.table-section .inner .details-table {}
/* The rows */.table-section .inner .details-table tbody tr td {}
/* The text in the boxes*/.table-section .inner .details-table tbody tr td p {}
/* For interests: */.profile .left > div:nth-last-child(2)
/* For links: */.profile .left > div:last-child
Reply by baldbat
posted
Reply by baldbat
posted
how do i make the links under the contact area a different color than the links in the links area lolll
Reply by Sarah Anne
posted
updated
If what you want is to make all the links the same color, you can try this:
?
* a {
color:red !important;
}
a * {
color:red !important;
}
If not, to change just those links specifically, try this:
div.contact a { color:red;}
\Obviously swapping "red" for any color you want. :)
Reply by Robot
posted
Reply by JMoney
posted