Hi all,
So I am doing something very similar to this thread
I have the CSS:
and it works perfect when I am viewing the page with the browser width the size of my screen, and no browser zoom
However, if I make the size of my browser smaller, or browser zoom (Command +), the Alerts and Conversation menu no longer appear.
They are actually far left off-screen, because for some reason the two menus have a "left:0" position set by XF. If I disable the margin-left however, they display properly.
I've experimented with different negative values of margin-left, and when it reaches a certain negative number, anything beyond that causes XF to set the "left: 0px" property for the menus.
Wondering if anyone has any ideas on this? I am working on a custom Style, but I was also able to replicate this in the Default style.
Thanks so much!
So I am doing something very similar to this thread
I have the CSS:
Code:
#ConversationsMenu, #AlertsMenu {
margin-left: -263px;
margin-top: -42px;
}
and it works perfect when I am viewing the page with the browser width the size of my screen, and no browser zoom
However, if I make the size of my browser smaller, or browser zoom (Command +), the Alerts and Conversation menu no longer appear.
They are actually far left off-screen, because for some reason the two menus have a "left:0" position set by XF. If I disable the margin-left however, they display properly.
I've experimented with different negative values of margin-left, and when it reaches a certain negative number, anything beyond that causes XF to set the "left: 0px" property for the menus.
Wondering if anyone has any ideas on this? I am working on a custom Style, but I was also able to replicate this in the Default style.
Thanks so much!