0
I recently made a page using Bootstrap, and hosted it at Hostgator. When I see the live preview in Brackets or enter the hosted page, they are equal and no problem, this on my pc. However, when someone accesses the site, css doesn’t work the way it was supposed to, and it looks different to other people.
How it is appearing on other computers (excluding mine, where everything looks right):
The HTML code for this snippet:
<div class="col-md-4" style="margin-top: 85px;">
<div class="row">
<div class="col-md-5">
<div class="box">
<div class="container p-2">
<img class="img-fluid" alt="O YAAM é uma comunidade africana localizada às margens do rio Spree, bem próximo a East Side Galery" src="../../fotos/Frankfurt/Q1.jpg">
</div>
</div>
</div>
<div class="col-md-5 offset-1">
<div class="box">
<div class="container p-2">
<img class="img-fluid" alt="Graffiti na east side galery" src="../../fotos/Frankfurt/Q2.jpg">
</div>
</div>
</div>
</div>
<div class="row mt-4">
<div class="col-md-5">
<div class="box">
<div class="container p-2">
<img class="img-fluid" alt="" src="../../fotos/Frankfurt/Q3.jpg">
</div>
</div>
</div>
<div class="col-md-5 offset-1">
<div class="box">
<div class="container p-2">
<img class="img-fluid" alt="" src="../../fotos/Frankfurt/Q4.jpg">
</div>
</div>
</div>
</div>
</div>
and finally the CSS code:
.box box {
width: 230px;
height: 230px;
border-radius: 0;
box-shadow: 5px 5px 15px;
}
There is a difference between browsers and devices may be occurring something similar, but anyway, you could share the site url for us to test?
– Leonardo Bonetti
So, but what I find strange is that in all the browsers I tested on my pc worked smoothly, up to Edge.. However on the computer of friends he gives this error.. The site is www.descubraalemanha.com.br, on the page of the tours.
– Cayo Eduardo Silveira
Most likely when you were developing, you were not cleaning the caches, so you may have defaced the site yourself, but with the caches saved, it seems that the site is right. Test and clear your browser caches.
– Vinicius De Jesus