-1

Can you please take a look my webpage(contact page) and let me know why still I am having this issue whit clearfix class? I even used the clear both on all elements but still this is happening! and tghe #bizleft and #bizright are not aligned!

http://ghazalphoto.com/contact/

Thanks

user1986096
  • 363
  • 1
  • 3
  • 7

2 Answers2

2

Usually you want to post some code instead of making people dig.. however. jsFiddle

Remove the clear: both on the #bizleft & #bizright

#bizleft{
    float:left;  
    width:49%; 
}
#bizright{
    width:49%;  
    float:right;
}
Black Bird
  • 797
  • 1
  • 10
  • 34
0

You can add below code to your #bizright class

position: absolute;
right: 10px;
Berkay Turancı
  • 3,373
  • 4
  • 32
  • 45