No problem dude !
I hope you have a good vacation. Enjoy your loved ones!
@DownPW ok!
What and where do I put something to make the pop up transparent?
@Panda why would you want it transparent ? It’s probably like this for us because we have heavily customized themes.
@phenomlab if I was understanding correctly, by making that pop-up transparent I can click through an area of it and get to the move post box that is currently hidden?
@Panda Also happy to do it the way you suggest, making the back box z-index higher.
What would I type to do that?
@Panda no, you wouldn’t be able to. The issue is z-index
which is the stacking order of elements. The higher the value the higher the reference.
For example, -1
means place under everything else. By default, the index figure is 1
, so you’d need a much higher value to ensure it was always positioned over other elements.
@Panda said in Difficult to move posts now, on mobile.:
What would I type to do that?
I’ll provide some custom CSS for this once I’m in front of a pc.
Yes I understand the principal, just dont know how to make that CSS
Yep I have the same no transparency menu at first :
It’s just the popoup after select move topics who is transparent :
I have customcss code, maybe on your site this is not transparent.
I solved the problem with this code (to be adapted to your environment) :
/* BUGFIX: Popup topic tool transparency */
.card {
--bs-card-cap-bg: var(--bs-node-card-cap-bg);
background-color: var(--bs-node-card-cap-bg);
}
RESULT :
Arf I just realized that we don’t have the same problem at all
In fact you don’t see the popup name “Move Topics” at all whereas I see it transparent
The z-index
solution suggested by Mark is indeed the correct solution I think
Maybe this :
.tool-modal {
z-index: 1055;
}
@DownPW Yes, it is. It’s set far too low meaning other elements with a higher preference will sit over the top of it.