background-image:url("https

on a CONTAINER / Style Attribute / Bg Image entering https://source.unsplash.com/fwWj5Y1IgQg gives :

<div class="container-fluid d-flex" style="height:100vh;padding:0;background-color:#dcb4b4;background-position:center;background-size:cover;background-image:url(&quot;https://source.unsplash.com/fwWj5Y1IgQg&quot;);">

while is correct to automatically surround the url in single quotes (i just entered the url, with no quotes at all), it wrongly appears in the resulting html source as the entity &quot;

sample .bsdesign here

enter image description here

still not fixed in 4.1.2 Bg Image when set as http://.... gets wrongly exported into url("http://....

I think that Bootstrap Studio does the right thing here - the image url()s are surrounded with quotes for consistency. When a string is a part of an HTML attribute (like the contents of style), all quotes must be escaped. Browsers handle this case perfectly well as far as I know. Has this caused issues in your designs?

I know this is a quiet old issue here, but still I want to reply to it. I am currently facing the same problem:

BS Studio exports my HTML files like this, when setting the background-image or by just using the Parallax Background Element provided by BS Studio:

<div class="container-fluid" style="background-image: url("assets/img/PicsArt_08-21-07.04.00.jpg");background-size: cover;background-repeat: no-repeat;height: 500px;"></div>

This causes the Design to look completely destroyed in Firefox 71.0. (I am using it together with the Coast CMS Content Management System). When manually replacing all " by " ' " as in:

<div class="container-fluid" style="background-image: url('assets/img/PicsArt_08-21-07.04.00.jpg');background-size: cover;background-repeat: no-repeat;height: 500px;"></div>

it's displayed as it should.

As a workaround I went through all my BS Studio Designs Style Sheets and replaced all

background-image: url("image.jpg");

with:

background-image: url('image.jpg');

Sorry for the late response. When Bootstrap Studio exports your design, the double quotes around the url are encoded to &amp;quot;. What you describe shouldn't happen. Can you send us a bsdesign file that generates an HTML like that so we can take a look? You can see our email address here: https://bootstrapstudio.io/contact-us

Hello I have problems with Firefox I have some text and right next to it there is a picture. It should look like this. https://drive.google.com/file/d/1CenvuHXuY8uz4cn9_mlRXbT1BQqkTOfl/view?usp=sharing

but in firefox it looks like this

https://drive.google.com/file/d/16Db0UkZblRs4LU5en_nGP7nNF3CCkCQ3/view?usp=sharing

these are settings for picture .cover { height: max-content; object-fit: cover; object-position: left; }

Those things are in row with 3 columns (1 for heading ,1 for picture and 1 for "description"). it should be like that because of mobile version. The problem is only on firefox. Any ideas how to solve it?