Cant move block in a page
Permalink
Hi,
I cant move block in a page.
When i select a block (gray area) and click move link, the blocks transform as when you are in move mode, but it looks like i cant get the 4 arrows locator to appear and drag and drop the block.
I'm looking for the MOVE selector to give him a z-index more high.
Or maybe you have another solution.
Thanks in advance
chris
I cant move block in a page.
When i select a block (gray area) and click move link, the blocks transform as when you are in move mode, but it looks like i cant get the 4 arrows locator to appear and drag and drop the block.
I'm looking for the MOVE selector to give him a z-index more high.
Or maybe you have another solution.
Thanks in advance
chris
Yes exactly.
And i try to find the MOVE selector of concrete5 to give a more high index.
Or any other solution.
Thanks in advance
Chris
And i try to find the MOVE selector of concrete5 to give a more high index.
Or any other solution.
Thanks in advance
Chris
Do you have a custom theme? Odds are your themes css styles are interfering with the C5 UI css. I had this problem with a recent project and z-index did not fix the problem. Had to redo my css a little and and updated one of the javascript libraries I was using and the problem went away.
If you need help tracking it down would be glad to help.
If you need help tracking it down would be glad to help.
I experience the same issue quite often
I fear that changing the z-index will only result in cosmetic changes; it won't make it work. I suspect interference from custom CSS or JS. Can you comment out customisations to check?
Hi,
I did try removing all my custom CSS and JS from my own template and i still cant move the block.
Could you please tell me the CSS selector for the move funtion of concrete5.
I want to give a try to this ?
Thanks
I did try removing all my custom CSS and JS from my own template and i still cant move the block.
Could you please tell me the CSS selector for the move funtion of concrete5.
I want to give a try to this ?
Thanks
Things to check:
- z-index of the container
- transitions on block / links
When selected / active
- z-index of the container
- transitions on block / links
.editmode a{ transition:none; }
<ul class="ccm-edit-mode-inline-commands ccm-ui"> <li> <a data-inline-command="move-block" href="#" style="user-select: none;" class=""> <i class="fa fa-arrows"></i> </a> </li> </ul>
When selected / active
<a data-inline-command="move-block" href="#" style="user-select: none;" class="pep-active pep-start">
@c5dragon : Thanks for this dude.
I will give a tray and let you know.
I will give a tray and let you know.
If I understand correctly you are trying to move a block, but it will not drop into a content area. And you think this is a z-index issue?