I'm working with Macrowave Dreamweaver 8. I need to make display my website for all devices. I have an index.css witch contains desktop style, and an index_mobile.css that is the style sheet of mobile devices.
I used display:none to all div in index_mobile.css that aren't used on mobile version. Than in my index.htm i set:
@import url (LAYOUT/index.css);
@import url(LAYOUT/index_mobile.css);
but it didm't change nothing. What i missed?