Add a Subpage Button Hidden Behind Edit This Page Button
Permalink
Ok, I'm working on a theme, and I'm having a very weird thing happening in 5.5.1. It appears that my style is "bleeding over" and causing the "Add a Subpage" button to display directly behind the "Edit this Page" button.
Does anyone know what might be causing it - what class these buttons are?
Does anyone know what might be causing it - what class these buttons are?
are you using bootstrap v2?
No, but it's a similar framework to that.
check to make sure that the class "tooltip" isn't interfering.
Thank you, sir! That worked perfect!
To anyone who finds this post and is using Bootstrap, I use the following css to fix the issue with the tooltip class on the edit page button:
.tooltip {
position: static;
opacity: 1;
filter: alpha(opacity=1);
}
.tooltip {
position: static;
opacity: 1;
filter: alpha(opacity=1);
}