Two Questions About X Theme

Hello,

My first question is is there a way to move the top bar above the video slider on the homepage?

My second question is is there a way to have the sidebar scroll along with the page on the interior pages so the information is always visible?

Thank you.

Hey Dakota,

Thanks for writing in!

1.) To move the topbar only on the homepage above the video slider, please add this JS code in the Theme Options > Global JS (http://prntscr.com/evswzb)

(function($){
	$(".home .x-topbar").prependTo('.home #top');
})(jQuery);

2.) To make your sidebar a sticky one, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.x-sidebar {
    position: fixed;
    max-width: 299px;
}

We would love to know if this has worked for you. Thank you.

Both of these solutions worked great thank you very much for your assistance!

I have one further question about the top bar, is there a way to increase the font size of the content in the top bar?

Thanks again

Hello Dakota,

It’s good to know that it works out for you.

The topbar content’s default font size is 11 pixels. If you want to increase it, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.x-topbar .p-info {
  font-size: 16px;
}

Feel free to change the font size when necessary.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.