Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can absolute divs feature in responsive design

I have started to design a photography website and I have included an absolute positioned logo in the top left hand corner. The area is made up of an absolute positioned div and an image within the div.

I was wondering whether I could make that absolute positioned div and logo, scale down depending on the screen size.

Is there anyone who can help? Here is the link so you can see what I am dealing with:

http://www.photographybytaraandclaire.com/newsite/index.html

like image 259
Gismmo Avatar asked Nov 05 '22 11:11

Gismmo


1 Answers

When dealing with responsive design you should work with percentages.

If you want to calculate what percentage width your logo should have you can use.

Logo width / Wrapper width * 100

The wrapper width is the width of you wrapper in your design and not the full page.

like image 131
Filip Avatar answered Nov 09 '22 05:11

Filip