May I have some help with CSS please?
I need to position my logo so that it displays correctly on all screen resolutions as it is a liquid layout.
pdxandroid.com
The class is .logo if it helps.
Thanks!
May I have some help with CSS please?
I need to position my logo so that it displays correctly on all screen resolutions as it is a liquid layout.
pdxandroid.com
The class is .logo if it helps.
Thanks!
What's the problem with the way it is being displayed at the moment?
I want it to left align with the text no matter the browser size.
It changes location on different screen resolutions.
Edit style.css and change:
logo {
padding:30px 0 0 312px;
}
to:
.logo {
margin:0 auto;
padding:30px 0 0;
width:960px;
}This topic has been closed to new replies.