By Ashley Rosenthal on Thursday, 16 January 2014
Posted in General Issues
Replies 5
Likes 0
Views 835
Votes 0
Hi there!

I was customizing my template that I'm using to make the menu bar at the top stay fixed at the top of the screen when rolling down. Something odd is happening with the mod_easysocial_user modules. The images and text are scrolling over the menu rather than under it. The other modules are scrolling under the menu properly. Do you know why? Thank you!
Hi,

It is most likely template CSS conflict. Please provide us your site's access.
·
Thursday, 16 January 2014 11:37
·
0 Likes
·
0 Votes
·
0 Comments
·
Here's the site information, thank you!
·
Thursday, 16 January 2014 13:03
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Ashley,

You will need to declare z-index for the top menu bar. Open /templates/youbricks/css/blue.css insert at lines 482
from
/***HEADER***/
.header_out {
background:#0f2440;
position: fixed;
width: 100%;
}

update to
/***HEADER***/
.header_out {
background:#0f2440;
position: fixed;
width: 100%;
z-index: 9000;
}
·
Monday, 20 January 2014 10:30
·
0 Likes
·
0 Votes
·
0 Comments
·
I did not see this until just now, thank you very much! Worked perfectly.
·
Monday, 20 January 2014 12:25
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,

You're welcome.
·
Monday, 20 January 2014 13:10
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post