page arrangement
-
how can one change the appearance of the mobile pages only,, so that when viewed the sub pages are slightly to the right
The blog I need help with is: (visible only to logged in users)
-
Hmmm, we can add some padding to them, but this is what I’m seeing: https://cldup.com/okt1RWiMV5.png . The main top level menu items are center aligned and the submenu items are left aligned below them and have a different background color, which differentiates them pretty well.
To add some padding to the left of the submenu items, add the following media query.
@media screen and (max-width: 767px) { .sub-menu li a { padding-left: 90px; } }
- The topic ‘page arrangement’ is closed to new replies.