ok im working on http://avoren.com/ and im having issues fixing the padding between the video and the text heres the CSS: (Some of this wont be right as im editing it) #aboutbar { padding: 0px; } #aboutbar h3 { color: #fff; font-family: Georgia, Times New Roman Times, Serif; font-size: 22px; padding: 5px 5px 5px 5px !important; margin: 0 0 0 0 !important; font-weight: bold; font-style: italic; text-shadow: 0 0px 0 #e9e5e5; } #aboutbar p { color: #fff; font-family: Georgia, Times New Roman Times, Serif; font-size: 14px; font-style: italic; margin: 0 0 6px; align: right; } .about_image { border: 5px solid #fff; float: left; } Code (markup): ty guys
There's not a lot of space to add padding there because the video and text almost consume the full width. Â Adding this to your stylesheet will give you some padding between the video and the text. Â iframe { Â Â padding-right: 8px; }Â Code (markup): Â