Log in

View Full Version : A question



RsCactusClan
03-06-2010, 09:16 PM
Okay, so I want to make the menu from this (http://www.dynamicdrive.com/style/csslibrary/item/arrow_green_vertical_menu/) tutorial horizantal, instead of vertical. Can anybody help me with this?

boogyman
03-07-2010, 12:37 AM
Okay, so I want to make the menu from this (http://www.dynamicdrive.com/style/csslibrary/item/arrow_green_vertical_menu/) tutorial horizantal, instead of vertical. Can anybody help me with this?

change


.arrowgreen li a{
font: bold 12px Verdana, Arial, Helvetica, sans-serif;
display: block;
background: transparent url(media/arrowgreen.gif) 100% 0;
height: 24px; /*Set to height of bg image- padding within link (ie: 32px - 4px - 4px)*/
padding: 4px 0 4px 10px;
line-height: 24px; /*Set line-height of bg image- padding within link (ie: 32px - 4px - 4px)*/
text-decoration: none;
}


to



.arrowgreen li a{
font: bold 12px Verdana, Arial, Helvetica, sans-serif;
background: transparent url(media/arrowgreen.gif) 100% 0;
height: 24px; /*Set to height of bg image- padding within link (ie: 32px - 4px - 4px)*/
padding: 4px 0 4px 10px;
line-height: 24px; /*Set line-height of bg image- padding within link (ie: 32px - 4px - 4px)*/
text-decoration: none;
}

RsCactusClan
03-08-2010, 10:14 PM
change


.arrowgreen li a{
font: bold 12px Verdana, Arial, Helvetica, sans-serif;
display: block;
background: transparent url(media/arrowgreen.gif) 100% 0;
height: 24px; /*Set to height of bg image- padding within link (ie: 32px - 4px - 4px)*/
padding: 4px 0 4px 10px;
line-height: 24px; /*Set line-height of bg image- padding within link (ie: 32px - 4px - 4px)*/
text-decoration: none;
}


to



.arrowgreen li a{
font: bold 12px Verdana, Arial, Helvetica, sans-serif;
background: transparent url(media/arrowgreen.gif) 100% 0;
height: 24px; /*Set to height of bg image- padding within link (ie: 32px - 4px - 4px)*/
padding: 4px 0 4px 10px;
line-height: 24px; /*Set line-height of bg image- padding within link (ie: 32px - 4px - 4px)*/
text-decoration: none;
}

Okay, I'll try it. That's all I change? I'll try it :D
Erm.. Didn't really do anything. Like, I want it to be a horizantal menu instead of a vertical one.