Hi There,
I have a problem with widgetizing my theme using the functions.php file.
My HTML is as follows:
<div class="rightbar">
<div class="righttitle">Best of the best</div>
<br clear="all" />
<div class="rightcontent">more test test test test test test test lol ionoun uwdjd wurhfn eurfie fieowjfe </div>
</div>
The CSS for this is:
.rightbar {
text-align: left;
width: 315px;
margin: 0 auto;
border-left: 1px;
float: right;
background-color:#FFF;
height: auto;
min-height: 99%;
}
.righttitle {
text-align: left;
width: 307px;
height: 35px;
margin: 0 auto;
border-left: 1px;
float: left;
background-image:url(sidetitle.gif);
padding-top: 20px;
padding-left: 20px;
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
color:#FFF;
}
.rightcontent {
background-color:#d5d4d4;
border-left: 1px solid #999;
border-bottom: 1px solid #999;
margin-left: 10px;
padding-left: 5px;
}
The problem is the title is wider than the content, so when I code the functions.php the main content is stretched to the width of the title.
I have coded my functions.php in many different ways and ran in to the same problem.
Any help is really appreciated as this has been annoying me for a good few hours!