i think its called inline but i need these two things combined please!
IE remove the class stuff
html
<div class="speechBubble">
<div class="pointer"></div>
<div class="bubble">
<div class="topLine">PAY WITH A</div>
<div class="botLine">TWEET</div>
</div>
</div>
css
.speechBubble {
position:relative
}
.pointer {
width: 0;
height: 0;
border-top: 25px solid rgb(16,125,195);
border-left: 25px solid transparent;
float:left;
margin-top:50px
}
.bubble {
width:300px;
height:110px;
border-radius:15px;
background-color:rgb(16,125,195);
margin-left:25px;
text-align:center;
padding:20px 0;
color:rgb(23,178,136);
font-family:arial;
}
.topLine {
font-size:2.8em;
line-height:1em
}
.botLine {
font-size:4.6em;
font-weight:bold;
line-height:.8em
}