Good. I tried a few things and I can't see the error.
My idea is to display some text/ads on the bottom of the smartphone screen.
I tried this code on extra.css
/*ADS MOBILE*/
<xen:if is="@enableResponsive">
@media (max-width
maxResponsiveNarrowWidth) {
#adsbottom {position: fixed;
bottom: 0;
left: 0;
width: 100%;}
}
@media (max-width
maxResponsiveMediumWidth) {
#adsbottom {display:none}
}
@media (@maxResponsiveWideWidth) {
#adsbottom {display:none}
}
</xen:if>
/*ADS MOBILE*/
and this on page_container
<DIV id="adsbottom" style="background-color:#ffffff">test</div>
But I can't see the "test" on the page or in the code.. what am I missing?