i managed to use instructions from another user and centered text vertically, but it doesn't allow me to center the whole thing vertically. i figured if i put the text in it's own div, it would do it, but it didn't. how can i center a PARAGRAPH next to the arrow?
vertical aligning CSS is very confusing...
CSS
#arrow {
width:33px;
height:25px;
background-image:url('http://i.imgur.com/26tbf.png');
margin-left:55px;
background-position:0 50%;
float:left;
height:100%;
background-repeat:no-repeat;
}
#bulletwrap {
border:1px solid black;
width:325px;
height:75px;
}
#text {
background-position:0 50%;
line-height:75px;
}
HTML
<div id="bulletwrap"><div id="arrow"></div><div id="text">This is some longer text that needs to be centered next to the arrow grouped together</div></div>