Link to home
Start Free TrialLog in
Avatar of JonMny
JonMny

asked on

CSS not working on wide screen monitors

I have an issue with a css definition that has issues when the screen size gets wide.

it seems like the top and bottom stops repeating. Not sure what would cause this. I know that this is not much info but if someone can point me in a direction...
 see attached file for example
Problem.png
Avatar of Rajar Ahmed
Rajar Ahmed
Flag of India image

Make sure you have repeat-x property ?
Also , instead of width in Px use % on your class

Like:
/*width:800px; For Eg*/
width:100%;
background-repeat:no-repeat;

Open in new window


Reference Link
http://www.w3schools.com/css/css_background.asp

Hope these helps you
ASKER CERTIFIED SOLUTION
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of JonMny
JonMny

ASKER

Thanks it was item 2 thanks
:)
You are welcome