landysaccount
-
Is there a screen resolution that would look good on all mobile devices?
Since I have a long css file I would like to include other css files for special cases. Is it safe to use @import in css like this: @media only screen and (max-width: 480px) { @import url('/css/styles-480.css'); }
-
Is there a screen resolution that would look good on all mobile devices?
@joshuanhibbert got it!
-
Is there a screen resolution that would look good on all mobile devices?
Ok. Thanks a lot... Basically just make the content look good on different screen sizes. How you guys approach it and how you decide on what widths to use or like mentioned: just make it look good?
-
Line-height not working inside span
I was able to edit the extension code and added a p tag between span... That worked. Thanks TreeRoot
-
:first-child is not working for me...
Yes, the missing dot was a copy/paste typo. :first-of-type did the work. I thought that :first-child meant the first h2 in .item-page ... Thanks a lot for clarifying that.