XF 2.0 XF2 forum menu, can it be moved?

barbeluk1

Member
Hi all,

We've just switched to XF from VB. Our old site was static html and held together with tape, though the main site did integrate nicely with the old VB forum.

We have used Wordpress for the non forum parts of our site, and now have XF2 for the forum bits (which we love!).

Here's the WP part of the site:

https://barbel.co.uk/

The forum part is here (the designs don't quite match at present as it's been done in a hurry!):

https://barbel.co.uk/forum/

My frustration is that the forum account stuff gets added to the main navigation menu, therefore covering up most of the navigation (I know there are arrows that allow a user to scroll).

Is there any way of moving the account menu and search to above the header? It feels to me like this would make more sense, and is fairly conventional....

Thanks,

Andy
 
barbeluk1 said:
The forum part is here (the designs don't quite match at present as it's been done in a hurry!):
Off-topic but you may find adding this to extra.less interesting :
Code:
.p-header-content {
padding: 0px !important;
}

.p-nav{
height: 58px !important;
background: #666666 !important;
color:#ffffff !important;
}

.p-nav a{
color:#ffffff !important;
}

.p-nav a:hover {
background: #808080 !important;
}

.p-nav-list .p-navEl.is-selected .p-navEl-link {
background: #808080 !important;
}

.p-nav-list .p-navEl.is-menuOpen {
background: #808080 !important;
}

.menu-linkRow.is-selected,.menu-linkRow:hover,.menu-linkRow:focus {
background: #808080 !important;
color: #ffffff !important;
}

.p-nav-inner{
padding-top: 10px !important;
}
 
Top Bottom