html - My title is hiding on some screens? -
trying figure out why title hiding on screens, have responsive design? here link:
css line 14 .title, negative margin in there.. that's why..
margin-top: -9%;
dirty fix layout:
- set marging of header1 > p zero
add this:
.title { position: absolute; width: 100%; }
and again, dirty solution. if have time work on improving layout.
btw, don't add negative margin top on header, adjust margin of <p>
inside header title won't having same issue again... can set 0 or little more that.
Comments
Post a Comment