I'm styling a text ad and want to change the positioning of some of the text, but I don't have access to the markup so I'm trying to accomplish it with just CSS.
Right now, it displays with an h2 on one line, an anchor tag on the next, and a paragraph below that:
ad title
right-aligned ad link
ad text......................
.............................
Instead, I'd like it to display with the paragraph above the anchor:
ad title
ad text......................
.............................
left-aligned ad link
I created a jsfiddle with the markup and the current CSS. Also, it's worth mentioning that I am not supporting IE older than IE9.
Any help would be appreciated, thanks!