Tagline for mobile
-
Hi, is there a way to also show the tagline under the title in mobile? I use „use desktop menu style“ and also need to show the tagline (like on desktop). I already found .tagline display:none in style_phone.php but that doesn't work because the hole .sitetitle is already display none.
-
Hi, is there a way to also show the tagline under the title in mobile? I use „use desktop menu style“ and also need to show the tagline (like on desktop). I already found .tagline display:none in style_phone.php but that doesn't work because the hole .sitetitle is already display none.
right now I solve it with a kind of dirty solution. A „real“ solution would be great! Here's what I've done: I put some Custom CSS for Mobile Version;
body {
padding-top: 0;
}.navbar,
.burger,
.mobile-title {
display: none !important;
}.sitetitle {
display: block;
position: fixed;
bottom: auto;
right: auto;
left: 50%;
transform: translateX(-50%);
}.tagline {
margin-top: 5px;
} -