When the text in mondaySpecial extends to a second line, it pushes tuesdaySpecial-saturdaySpecial further down on the page, disrupting the layout of the divs. The same issue occurs with other specials as well. Is there a way to prevent this from happening?
<div id="specials"> <img src="SleepingMoonImages/menuSpecials.png" width="360" height="839" alt=""/> <div id="menuSpecials">
<div id="weeklySpecialsLabel">Weekly Specials </div>
<div id="redUnderline1"></div>
<div id="weeklySpecialsDays">
<div id="mondayLabel">Monday</div>
<div id="tuesdayLabel">Tuesday</div>
<div id="wednesdayLabel">Wednesday</div>
<div id="thursdayLabel">Thursday</div>
<div id="fridayLabel">Friday</div>
<div id="saturdayLabel">Saturday</div>
</div>
<div class="specialsFormat" id="mondaySpecial">Monday Special Content Goes Here df dsaf fds f sfd</div>
<div class="specialsFormat" id="tuesdaySpecial">Tuesday Special Content Goes Here</div>
<div class="specialsFormat" id="wednesdaySpecial">Wednesday Special Content Goes Here</div>
<div class="specialsFormat" id="thursdaySpecial">Thursday Special Content Goes Here</div>
<div class="specialsFormat" id="fridaySpecial">Friday Special Content Goes Here</div>
<div class="specialsFormat" id="saturdaySpecial">Saturday Special Content Goes Here</div>
</div> </div>
CSS
.specialsFormat
{
float: left;
margin-right: 10px;
}
#mondaySpecial{
width:300px;
margin-left:auto;
margin-right:auto;
position:relative;
bottom:644px;
left:41px;
font-size:12px;
}
#tuesdaySpecial{
width:300px;
margin-left:auto;
margin-right:auto;
position:relative;
bottom:557px;
left:41px;
font-size:12px;
}
#wednesdaySpecial{
width:300px;
margin-left:auto;
margin-right:auto;
position:relative;
bottom:490px;
left:41px;
font-size:12px;
}
#thursdaySpecial{
width:300px;
margin-left:auto;
margin-right:auto;
position:relative;
bottom:405px;
left:41px;
font-size:12px;
}
#fridaySpecial{
width:300px;
margin-left:auto;
margin-right:auto;
position:relative;
bottom:317px;
left:41px;
font-size:12px;
}
#saturdaySpecial{
width:300px;
margin-left:auto;
margin-right:auto;
position:relative;
bottom:227px;
left:41px;
font-size:12px;
}