Finally I found a very simple solution that works.It was a 'left' problem set to 100% in my css.What I did was change the 'left' setting changing that to a percentage and added a margin-left in pixels.Width or right should also be set to a percentage.
This is what my code looked like.
#yourcss{
left:555px;}
left:555px;}
I changed that to a percentage- 50% and then set a margin-left.
#yourcss{
left:50%
margin-left:505px;
}
left:50%
margin-left:505px;
}
And that was hit the spot!!
No comments:
Post a Comment