• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

How do I make objects invisible to the cursor in Muse?

New Here ,
Jun 06, 2017 Jun 06, 2017

Copy link to clipboard

Copied

I know the title sounds a bit ambiguous, here's the explanation of my problem:

Say, for example, I want to add a full screen vignette effect to my website, that applies to absolutely everything, I would make a new layer on top of everything else, add a fullscreen object to it, pinned to the top, filled with a transparent vignette graphic created in Photoshop. Looks good, works as intended VISUALLY - problem is, now I can't click on anything on my site because all other objects lie beneath the vignette object and I can't click - or even hover - THROUGH the vignette.

What I would like to do is use css style pointer-events and set it to 'none' for the vignette graphic, however I can't find a way to do that in Muse. Is there anything I am missing? Like, is there an option to view the piece of code for any given object in my design within Muse and edit its code?

Thanks in advance,

Martin

Views

316

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Guide , Jun 06, 2017 Jun 06, 2017

Determine the block ID containing a vignette using your browser's code inspector. Go to the Properties page / Meta data and in the "html for head", insert the following code:

<style>

#u000 {

pointer-events: none;

-o-pointer-events: none;

-webkit-pointer-events: none;

}

</style>

Replace u000 with the ID of your block with a vignette.

Votes

Translate

Translate
LEGEND ,
Jun 06, 2017 Jun 06, 2017

Copy link to clipboard

Copied

You can't do it in muse directly. You have to edit the CSS after publishing the code and add the rule to the relevant IDs and classes.

Mylenium

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guide ,
Jun 06, 2017 Jun 06, 2017

Copy link to clipboard

Copied

Determine the block ID containing a vignette using your browser's code inspector. Go to the Properties page / Meta data and in the "html for head", insert the following code:

<style>

#u000 {

pointer-events: none;

-o-pointer-events: none;

-webkit-pointer-events: none;

}

</style>

Replace u000 with the ID of your block with a vignette.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 06, 2017 Jun 06, 2017

Copy link to clipboard

Copied

Love it!!! Thanks a lot!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 13, 2017 Nov 13, 2017

Copy link to clipboard

Copied

LATEST

Nice, thank you - good to know

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines