Hey
I know the CSS for the customization of the scroll down link e.g. on a colored section
#top .scroll-down-link {
color: red;
font-size: 150px;
text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
}
two questions:
1) Do I really need the #top
? (if yes why?)
2) How can I make different scroll down arrows on different pages? I need a black one on my home page and a white one on my contact page.
thanks :)
Hi haschkeks6696!
1) No, you do not really need #top which is ID of the Body tag. You may need to use !important rule however
2) You can right click on Chrome or Firefox to inspect elements to find page ID’s http://i.imgur.com/HyPTCRg.jpg
.page-id-59 .scroll-down-link {
color: orange !important;
}
Cheers!
Yigit
Thanks :)
do I have to use !important rule in every line? Or am I fine if I use it only in the very last line?
#top .scroll-down-link {
color: red;
font-size: 150px;
text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4) !important;
}
and is it important to write the !important rule before the ; ?