XenForo
Administrative
- Thread starter
- Admin
- #1
As certain things already show in the mobile version of my theme I want to hide some footer blocks just on mobile.
I thought I found an answer to it in an other thread so I tried to put this in the HTML section of block 2;
Code:
And this in extra.less:
Code:
But it's not working, what did I do wrong?
ادامه مطلب...
I thought I found an answer to it in an other thread so I tried to put this in the HTML section of block 2;
Code:
Code:
<span class="b2">
<xb_footer_block2>
</span>
Code:
Code:
/* footer blocks hide on mobile*/
@media (max-width: @xf-responsiveMedium) {
.b2 {
display: none;
}
}
ادامه مطلب...