Bricks for WordPress has an Issue

wiki.TerraBase.info
Revision as of 14:41, 15 April 2026 by Root (talk | contribs) (Created page with "...you have a bug in the way a background image is inserted into an Element (DIV, SPAN, etc.).  You need to quote the URL just in case. Example, you guys do this as a CSS directive: <code>background-image: url(<nowiki>https://WhatEver.com/wp-content/uploads/media/Picture(Cool).jpg)</nowiki></code> And Elementor does this: <code>background-image: url("<nowiki>https://WhatEver.com/wp-content/uploads/media/Picture(Cool).jpg</nowiki>")</code> Can you guess which one work...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

...you have a bug in the way a background image is inserted into an Element (DIV, SPAN, etc.).  You need to quote the URL just in case.

Example, you guys do this as a CSS directive: background-image: url(https://WhatEver.com/wp-content/uploads/media/Picture(Cool).jpg)

And Elementor does this: background-image: url("https://WhatEver.com/wp-content/uploads/media/Picture(Cool).jpg")

Can you guess which one works and which one doesn't?