How to open sub menu as default in Plus ui theme?

So many of us want the submenu of plus ui theme to stay open all time. By default, the submenu from menu section stay hidden. And whenever user click on drop down arrow icon sub menu get opened. But we can easily change the sub menu to stay open all time. In this way, people can see more sections from our menu without any need of opening it by click.

How to open sub menu as default in Plus ui theme - Bytes Vibe

To make sub menu stay open as default in Plus ui theme follow these steps:

  1. First log in to Blogger site and go to theme section.
  2. Select edit html from dropdown menu and search for Dropdown style.
  3. Just after that we will find a similar code like this one –
<input class='drpI hidden' id='drpDwn-1' name='drpDwn' type='checkbox'/>Code language: JavaScript (javascript)

Now to make sure that all of our submenu stay open in Plus Ui menu we just need to add a simple code word before class=’drpI hidden’. Now just add checked="checked" before class=’drpI hidden’ and save the changes in theme. We can do the same thing in every menu like Dropdown style 2 or Dropdown style 3 etc. The whole code will look like this after editing –

<input checked="checked" class="drpI hidden" id="drpDwn-1" name="drpDwn" type="checkbox">Code language: JavaScript (javascript)

Save the changes by saving blogger theme. Now after blogger theme customisation, if we check in Plus Ui blogger theme than we will see that our all submenu are now open as default.

Share this post -

Leave a Reply

Your email address will not be published. Required fields are marked *