Automatic image resizing

5
How do I get the logo to resize when the screen resolution changes?
asked
1 answers
7

Instead of using

.LogoPane {
width: 1000px
}

rather use

.LogoPane {
width: 100%;
}

That will resize the logo automatically as the screen resolution changes.

answered