Hi,
IN order to achieve that please add the below custom code in Newspaper>Theme panel>Custom code>Custom css
@media (max-width: 767px){
.td-scroll-up {
display: block;
width: 25px;
height: 25px;
}
.td-scroll-up .td-icon-menu-up {
font-size: 15px;
width: 25px;
top: 3px;
}
}
Thank you.
thanks, i have another question:
On the “advance custom css” theme settings, there are 4 section :
PHONES -> 0 – 767px
IPAD PORTRAIT -> 768px – 1018px
IPAD LANDSCAPE -> 1019px – 1140px
DESKTOP -> 1141px +
What are the corresponding css codes to modify these sections?
Hi,
This section is made to let you to set different css on that devices, for example you can set this css in phones section
.home .td-scroll-up{
display:none;
}
and will be apply only on mobile
or in custom code>custom css you need to set this @media (max-width: 767px){ } in order to be apply only on mobile.
Thank you for your understanding.