Hello,
I have 3 columns in the footer and I would like to get the content of the the right column to be aligned to right. (content is iframe facebook like button). The other column’s (left and middle) alignment’s should stay unchanged.
Any ideas how to make this happen?
Hey Johannes!
I would add display:block;
to your iframe style.
E.g
iframe{
display: block;
width:200px;
margin:0 auto;
}
Alternatively, it would be better if you could forward us the link to your page for us to have a look.
Cheers!
Arvish
Hi Arvish,
Thanks for the help!
I added also
<div style=”position:absolute;right:0;”>
<iframe>…</iframe>
</div>
to get it working better.
Cheers,
Teemu