Hi @kenzi0106,
You can do this by adding this CSS code to the Global CSS:
.x-topbar .x-social-global {
display: none;
}
You can do this by adding some custom HTML to the topbar content and some CSS.
Please try this HTML in X > Theme Options > Topbar > Content:
<span class="right">
<a href="LINK_TO_THE_PAGE">Page 1</a> |
<a href="LINK_TO_THE_PAGE">Page 2</a>
</span>
Then add this code to the Global CSS:
.x-topbar .x-topbar-inner .right {
display: block;
float: right;
}
.x-topbar .x-topbar-inner .right a {
display: inline-block;
padding: 0 5px;
}
Hope this helps.