How to prevent custom CSS from impacting other mashups in parent mashup?
Nov 11, 2023
08:31 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Nov 11, 2023
08:31 AM
How to prevent custom CSS from impacting other mashups in parent mashup?
I have a parent mashup where there are two mashup containers. One of the mashups in the containers have custom CSS. However, this custom CSS is also affecting the other contained mashup. How do i prevent that from happening?
This is the CSS is one of the mashups:
rect {
fill: rgba(0, 0, 0, 0); !important
}
I just want to hide the rectangle in that certain mashup, but it ends up hiding the other rectangle in the second mashup too.
Solved! Go to Solution.
Labels:
ACCEPTED SOLUTION
Accepted Solutions
Nov 11, 2023
09:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Nov 11, 2023
09:33 AM
Hi @S_Elsayed
Use Class Selector name in CSS
.customCss rect {
fill : rgba(0,0,0,0) !important ;
}
Put class name in Container custom css property.
/VR
1 REPLY 1
Nov 11, 2023
09:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Nov 11, 2023
09:33 AM
Hi @S_Elsayed
Use Class Selector name in CSS
.customCss rect {
fill : rgba(0,0,0,0) !important ;
}
Put class name in Container custom css property.
/VR
