Check out my website: . I'm having an issue with the layout where two <li>
elements are stacked on top of each other and one is floating next to them, but it's only floating next to the second one. How can I make it float next to the first <li>
?
This is what the current CSS looks like:
.sub-info {
display: inline-block;
position: relative;
width: 67%;
margin-bottom: 25px;
margin-right: 1%;
padding-left: 3%;
float: none;
}
.sub-info2 {
display: inline-block;
position: relative;
width: 26%;
margin-bottom: 25px;
float: left;
padding-left: 1%;
}
I need to figure out how to align all three <li>
elements correctly using CSS. Any advice would be greatly appreciated!
Thank you