Perhaps I misread this, but does your Royal WP support Bootstrap elements? All I’m trying to do is make a drop down button and I added this code from bootstrap;
<!-- Split button -->
<div class="btn-group">
<button type="button" class="btn btn-danger">Action</button>
<button type="button" class="btn btn-danger dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="caret"></span>
<span class="sr-only">Toggle Dropdown</span>
</button>
<ul class="dropdown-menu">
<ul>
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
</ul>
<li role="separator" class="divider">
<ul>
<li><a href="#">Separated link</a></li>
</ul>
</div>
I’m not getting the desired result. Does your theme not support bootstrap? If not can you help with some simple code to get your buttons found here https://www.8theme.com/demo/royal/buttons/ to have some drop down options.
Thanks in advance…