How to bring back hidden elements in tagdiv composer

Posted in: Newspaper
Post count: 18

Hi there,

I have a Flex Block 1 in my Newspaper theme that should be temporary invisible. So I go to the tab ‘css’ and set the ‘display’ value to ‘Hidden’ instead of ‘Show’. I must do that for every viewport (desktop, tablet and mobile).

Within a week, the same element should be made visible again. So further in time, I want to click the hidden element again so I can change the CSS ‘display’ value to ‘Show’ again. The only problem is: I can’t find the block in TagDiv Composer again. It’s really invisible. Not faded to indicate that it’s not visible on the frontend anymore, no: totally invisible. In fact, it looks like it’s deleted…

My question is: how can I make that element visible again? Is there a TagDiv setting that show the hidden elements in TagDiv composer?

Thanks for helping! 😉

Post count: 18283

Hello !

Unfortunately that element will need to be looked after with the inspector tool ( F12 on google chrome )

For what you need it is a better practice to set a custom css tag as you can see here: https://www.screencast.com/t/j209MB740Db And use a css code like this:

https://www.screencast.com/t/AlX9fifb

Code example: .weekly {
display:none;
}

If you want to be displayed, simply set it to block: .weekly {
display:block;
}

The code must be inserted here: https://www.screencast.com/t/J1Nxw5s5

Thank you !

Post count: 18

Okay thank you, that did the trick 🙂

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.