« Web, HTML, Tech Forum

Trying to change text for logo, nav links, and everything in that area to red help pls!

Posted by Tester

posted

Forum: Web, HTML, Tech

All the white text i want to change to red pls!




Report Topic

7 Replies

Sort Replies:

Reply by minhoneybun

posted
updated

this should work:

nav .links a {
color: #FF0000;
}

i assume you already have <style> and </style>, so put this code somewhere inbetween.


you can replace the color code with any color code of your choice if you dont like that tone of red.

you can also add this into the code if you wanna add/change the shadow color:

text-shadow: 0 0 8px #(insert color code);


Permalink Report Reply

Reply by Tester

posted

ty is also is there a way to change the help and log out and same for the search users and also the search button

and on a different note im struggling to do the links under contacting i figured out add to favorites and add to friends but the rest arent working ive been using this for this topic

<style>

a[href*="addfriend"] {

    color: red !important;     /*color when not hovering on it*/

    transition: 0.3s;

}

a[href*="addfriend"]:hover {      

    color: orange !important;       /*color for when u are hovering*/

}

</style>


i would replace the "addfriend" with these and idk if thats correct


send message-> "sendmessage"

instant message-> "instantmessage"

add to group-> "addgroup"

add to favorites-> "addfavorite"

forward to friend-> "forward"

block user-> "blockuser"

report user-> "reportuser"



Permalink Report Reply

Reply by minhoneybun

posted
updated

I hope i understood everything you need help with.

This is the code to change "search user" and "help/logout"

nav {
  color: #FF0000;
}

to color the links under your profile you could simply do this, but it also colors the other links on your profile:

.profile a{
color: #FF0000;
}

.profile a:hover{
color: #FFA500;
}

If you want to ONLY color the links right under your pfp, then use this:

.profile .contact .f-row a{
color: #FF0000;
}

.profile .contact .f-row a:hover{
color: #FFA500;
}




Permalink Report Reply

Reply by minhoneybun

posted

and i forgot the button color change, here:


nav .top div button {
color: #FF0000;
}


Permalink Report Reply

Reply by Tester

posted

TY again so much the only problem is now is that the logout didnt change color its still white everything else did change, TYSM!!!


Permalink Report Reply

Reply by Tester

posted

Ok nvm the last code fixed the logout color TY UR A LIFE SAVER!!!


Permalink Report Reply

Reply by minhoneybun

posted