You may want your website Logo to be displayed only when visitors open it on computer desktop but want to hide it on Mobile mode by some reasons.
You can do this by inserting code in Site Management.
1. On Content editor, click Site -> Setting -> Site Setting, then click Gear Icon.
2. On Site Config panel, make sure it stays on Config -> CMS. Click on CSS/JS tab, and insert this code, and save it.
<style>
@media only screen and (max-width:1024px) {
.uk-navbar-brand { display:none; }
}
</style>
=========================
Comments
0 comments
Article is closed for comments.