Web Studio Next CSS link stylingIf you are not familiar with web studio refer to the instruction page
Different links colors on the same page Let's do one then I'll show you how to style it
Add your link in Web Studio like you always do.
Look for After you add the class to your links Preview Changing the link colors Use color names, or use a HEX colors like #800000 a:.next:link { color: DarkGreen; text-decoration: none;} Changing the link underlines a:.next:link { color: DarkGreen; text-decoration: none;} For underlined the links you use underline and for no underline you use none
Link - a normal, unvisited link What does what?
To work properly in all browsers they always need to be in that order Active is conditional so you don't need to use it.
a:.next:link { color: DarkSlateGray; text-decoration: none;} For additional different colored links you use different class names
You can also change the background colors by adding background-color: Gold; There is quite a few other things you can do but that's the basics The next step, making a linked box
This is an example that will be as wide as your text object, look like a button I put some notes in this one where you can change the colors.
a:.next:link { color: DarkGreen; text-decoration: underline;}
You can use any name, but let's just number them. <A class=next2 href="yourlink" ... Changing the link background color and this is the next3 link with a background color that changes Our original one <A class=next href="yourlink" ... The one we just added <A class=next2 href="yourlink" ... For this one we used new class <A class=next3 href="yourlink" ... For this one we used this class <A class=next4 href="yourlink" ... a:.next:link { color: #800000; text-decoration: none;}
|