I am trying to get the News module to go horizontally across the bottom of my site - but everything I do seems to be just making the situation worse. I'm afraid it's been a few years since I dipped my toes into CSS, so please forgive the rather 'newbish' feel to my questions / problems. Check out maxwellbrodie.com and you will see what I mean! The CSS and HTML I am currently working with is below.
CSS:
Code: Select all
#newsbox {
margin-left: 10px;
padding: 0 10px 0 10px;
border-top: 1px dashed #422100;
font-size: .8em;
line-height: 1.2em;
display: inline-table;
width: 100px;
}
Code: Select all
<div id="newsbox">
{cms_module module="news"}
</div>
Max