-
|
For example I have a gallery with images, when I select an image vvveb warns that it has a linked style shared with the other images in the gallery, which makes sense and I understand the concept, however I don't understand where/how to actually edit that shared style. The parent div doesn't seem to have any particular image related settings. Follow up question if true, these style classes where are they defined? Is it the vvvebjs-css(css/custom.css) concept I've read somewhere? What's the best way to edit these custom styles as they are simply linked in the html file? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.


Shared style means that there are more than one element on the page that have the same css selector, making changes to styles (color, font etc) will apply to all elements that share the same selector.
The element selector is shown inside the warning, hovering over
# elementswill highlight the linked elements.You can set a unique id to a linked element to 'unlink' it and apply style changes only to the element, in this case the
#element-idwill be used as css selector.You can view the generated selector and css for the element in the css editor, this was moved from the left panel to code editor in the last update.
The selector is generated automatically by using the classes or id from…