In Jupiter there is an option to add Social Network Icons and a Start Tour Link in the header section. For more information please read this article for social network icons.
Social Network Icons
In previous versions of Jupiter we had a problem that if user had many menu items, last menu item and Social Network or Start Tour link conflicted with each other. Our development team came up with a solution for this. New versions of Jupiter detect the browser window width and hide Social Network Icons or Start Tour link to avoid the conflict.
There are some cases that users insist on having Social Network Icons and Start Tour link shown for all Desktop sizes. For that, please add the code below for Social Network Icons:
body .header-section.hidden {
visibility: visible !important;
opacity: 1 !important;
}
body .mk-header-right {
z-index: 999;
}
.header-style-1.header-align-left .mk-header-right {
display: block !important;
}
and code below for the Start Tour Link:
body .mk-header-start-tour.hidden {
visibility: visible !important;
opacity: 1 !important;
}
body .mk-header-right {
z-index: 999;
}
Code above can be added to style.css of your Child Theme. For more information about child themes please click here.
Also it is possible to add the code above to: Theme Options > Advanced > Custom CSS