Title page in mobile view
-
Hi all, using harmonic theme and the title page is only showing up on the top half of he screen when using a mobile (portrait). Any tips to solve ?
Thanks
-
Hi, this is a bit tricky. Add the following to your custom CSS and then play with the 10% value and make sure and check things in a phone and a tablet. You may have to work with it to get it to where it works on all devices in both orientations.
@media screen and (max-width: 600px) { #single-titles #single-wrap, #header-branding { padding: 10% 0; } }I’ve done this with a Media Query and limited this change to 600px and narrower screens.
-
Perfect ! Used 70% which worked
I have spent ages trying to solve this – you have made my day.
-
-
Hi -another query. How do I adjust the position and size of the tagline ?
I have tried site.description CSS adjustments with no luck.
Thanks
Adam
-
Adam, are you talking about the “find your perfect meal” across the image? Harmony doesn’t actually show a site description as such.
-
-
Yes you can. Add the following to the bottom of your custom CSS and adjust the 15% value as desired.
@media screen and (max-width: 600px) { #para-template #slide-1 .hsContent #header-branding { padding-top: 15%; } }
- The topic ‘Title page in mobile view’ is closed to new replies.