Hi There,
- Yes, that is right, you need to manually write your HTML markup for it. You can use the following snippet as your starting point.
<i class="x-icon x-icon-phone mrm" data-x-icon-s="" aria-hidden="true"></i><a class="topbar-menu" href='tel:XXXXXXXX'><span>XXX.XXX.XXXX</span></a>
<span class="mhm tbar-menu-separator">|</span>
<i class="x-icon x-icon-envelope mrm" data-x-icon-s="" aria-hidden="true"></i><a class="topbar-menu" href='mailto:xxxxx@xxxxx.com'><span>xxxxx@xxxxx.com</span></a>
Then add this to Theme Options > CSS to position it to the right.
.x-topbar .p-info {float: right;}
- Topbar height is
auto
it depends on its content total height. But if you need it to have a max-height, please add this to Theme Options > CSS
header .x-topbar {
max-height: 100px;
overflow: hidden;
}
Hope it helps,
Cheers!