How to replicate list boxes across a Web page?
-
Hello I have a crude 'test' Webpage here: http://www.bayingwolf.com/New1/dropdown/test2.html[^] I am only concerned about the 'Timetable' drop-down box and replicating it in a visible container across the page: Timetable Timetable Timetable Timetable I was hoping to use this as my container to hold the four drop-down boxes: HTML
and this in my women_test.css:
.holder_content_middle {
margin-top:-10px;
margin-bottom:16px;
margin-left:26px;
border-style: solid;
border-width: 5px;
border-color: BD2CBB;
}but I still can't get the drop-down list boxes across the page framed by that bordered container - I have spent hours trying to achieve it without success. I would be grateful for any assistance. Thank you.
-
Hello I have a crude 'test' Webpage here: http://www.bayingwolf.com/New1/dropdown/test2.html[^] I am only concerned about the 'Timetable' drop-down box and replicating it in a visible container across the page: Timetable Timetable Timetable Timetable I was hoping to use this as my container to hold the four drop-down boxes: HTML
and this in my women_test.css:
.holder_content_middle {
margin-top:-10px;
margin-bottom:16px;
margin-left:26px;
border-style: solid;
border-width: 5px;
border-color: BD2CBB;
}but I still can't get the drop-down list boxes across the page framed by that bordered container - I have spent hours trying to achieve it without success. I would be grateful for any assistance. Thank you.
If you make a plain html template, put a div in the body with the class mentioned, and use your class attributes like above in a style element in the header it does just what I think you want: a box with a border around it ( I did add a width and height to the div so I could see it ). First thought is that maybe a subsequent css file called for in the html file is overriding your class settings? Try placing your css file with this class above as last in your style element section of your html file and see if that changes anything. :)
vbmike