I wanted to align breadcrumb in Corona to the left and just below the header container border so that long breadcrumbs do not infringe upon the main menu, which I dropped to the bottom of the header container. Is this the best fix for this, which I did below:
I changed the top margin to 0, changed right:0 to float:left, and added a top border:
#breadcrumb_wrapper .breadcrumb {
padding: 2px 5px;
position: absolute;
top: 0px;
float:left;
border-top:1px solid #eeeeee;
}
Thanks in advance.














