"Newly Arrived" & "Here Comes the Latest". They won't be on the same alignment horizontally. How can I make them appear in a single line?
Check out this demo http://jsfiddle.net/CtCuk/2/
HTML Markup
<div class="top_page">
<div class='container-general'>
<div class="annouce-row">
<div class='title'>
Newly Arrived
</div>
<div class='annoucement'>
Here Comes the Latest
</div>
</div>
</div>
</div>
CSS Styling
.top_page{
text-align: center;
width: auto;
max-width: 900px;
margin: 50px auto 20px;
}
.annouce-row{
width: 800px;
}
.title {
padding: 20px 10px;
background-color: rgb(123, 0, 218);
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
margin: 1px;
color: rgb(255, 255, 255);
font-size: 22px;
width: 70px;
}
.announcement {
font-size: 24px;
font-weight: 200;
color: rgb(0, 174, 218);
margin-left: 0px;
width: 600px;
}