Hi
I'm trying to change a bottom border colour and I can't seem to get it to work! I'd like it to be a thick red border. This is the code I have:
.activeMenuButton
{
border-bottom-style: ridge;
border-bottom-width:medium;
border-bottom-color: #98401A;
}
I'm assuming that it's maybe the order I've got them in, but I've moved things around but the bottom border is still black.
Anyone got any ideas?
Thanks!Use this border-bottom:3px solid #98401A;
This will work and it will reduce your code just adjust to your own preference.Thanks a lot, works like a charm!No problemGo Sharkey!
I'm trying to change a bottom border colour and I can't seem to get it to work! I'd like it to be a thick red border. This is the code I have:
.activeMenuButton
{
border-bottom-style: ridge;
border-bottom-width:medium;
border-bottom-color: #98401A;
}
I'm assuming that it's maybe the order I've got them in, but I've moved things around but the bottom border is still black.
Anyone got any ideas?
Thanks!Use this border-bottom:3px solid #98401A;
This will work and it will reduce your code just adjust to your own preference.Thanks a lot, works like a charm!No problemGo Sharkey!