This forum has now moved. These topics have been left as a read-only archive. Please create all new topics in the Community space.
Why doesn't this work to add a 10 pixel margin above the breadcrumb bar?
.atb-navigation { margin-top: 10px; !important }
Hmm.....
Thanks for any help!
Matt
View old comments
Mar 25, 2008
It would be better to use padding:
.atb-navigation { padding-top: 10px;}
Or are you trying to make a gap between the header and navigation panels? In which case you could cheat and add a border to the top:
.atb-navigation { border-top: 10px solid transparent;}
Mar 26, 2008
I used the border trick and it worked perfectly! Thanks Guy!
Comments (2)
Mar 25, 2008
Guy Fraser says:
It would be better to use padding: .atb-navigation { padding-top: 10px;} ...It would be better to use padding:
.atb-navigation { padding-top: 10px;}Or are you trying to make a gap between the header and navigation panels? In which case you could cheat and add a border to the top:
.atb-navigation { border-top: 10px solid transparent;}Mar 26, 2008
Matt B says:
I used the border trick and it worked perfectly! Thanks Guy!I used the border trick and it worked perfectly! Thanks Guy!