how can i hide some blocks on mobile?

Posted in: Newsmag
Post count: 14

for example i want to hide “more article box” on mobile. i also want to hide td_block_13 and etc. how can i do thats

Post count: 6535

Hi

You can use media queries to hide an element on mobile devices:

@media(max-width: 768px){
.elemnt-css-classes{
display: none;
}
}

Here is an example referring at more article box: https://forum.tagdiv.com/topic/view-on-mobile-mode-the-more-stories-covered-all-content/

Thanks!

Post count: 12

can you hide something on web browser that’ll appear on mobile? same as this code but vice-versa

Post count: 23312

Hello nikthehat,

Notice that you can hide elements only for mobile devices if you will use the @media queries for mobile, like in the above example.
@media(max-width: 768px){enter your code} Try to create your custom CSS box using the Inspector Browser, according to our documentation here -> https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/

Thanks for your understanding!

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newsmag’ is closed to new topics and replies.