rexolioISback
Programmer
I have 2 lines of text that I need to appear as so:
Home > Current Page (Breadcrumbs)
Login | Profile | SEARCHBOX & Search Button
The top line the text is very small and formatted differently than the 2nd line, and that line includes a form element (input text box and button.)
Here is my CSS:
#breadcrumbs {
font-size: xx-small;
float: right;
margin: 2px 6px 2px 0px;
}
#searchbox {
display: inline;
font-size: x-small;
float: right
margin: 30px 6px 2px 0px;
}
In the HTML:
<div id="breadcrumbs">TEXT</div>
<div id="searchbox">TEXT & TEXT BOX</div>
It appears on the page all on the same line, 6 px from the top of the page. I've removed the display property, added "clear: right;", researched and still nothing.
Thanks in advance for your help!
Home > Current Page (Breadcrumbs)
Login | Profile | SEARCHBOX & Search Button
The top line the text is very small and formatted differently than the 2nd line, and that line includes a form element (input text box and button.)
Here is my CSS:
#breadcrumbs {
font-size: xx-small;
float: right;
margin: 2px 6px 2px 0px;
}
#searchbox {
display: inline;
font-size: x-small;
float: right
margin: 30px 6px 2px 0px;
}
In the HTML:
<div id="breadcrumbs">TEXT</div>
<div id="searchbox">TEXT & TEXT BOX</div>
It appears on the page all on the same line, 6 px from the top of the page. I've removed the display property, added "clear: right;", researched and still nothing.
Thanks in advance for your help!