Why is it that every time I successfully build my project, the changes I made disappear after refreshing the page?

I'm making a small web shop and i'm stuck. I want to create my main Index.html page but when i want to make 3 columns and I set their height to eg. 250px it's working but when i press f5 columns are changing their height to 20px. In incognito theyre 250px all the time - how? Second problem is that I can't set my height to eg. h-50 with bootstrap - it's not working even in incognito

<div class="container cont">
    <div class="row row-no-gutters rov">
        <div class="col-sm-4 h-50 bg-success">.col</div>
        <div class="col-sm-4 kol bg-success">.col</div>
        <div class="col-sm-4 kol bg-success">.col</div>
    </div>
</div>
.cont{
    height:500px;
}
.rov{
    height:250px;
}
.kol{
    height:250px;
}

Answer №1

In the event that the appearance of the page appears fine in 'incognito' mode but not when simply refreshing with F5, it is possible that the issue lies within the browser cache. If this is the case, clearing the cache or using Ctrl + F5 for a more thorough refresh may resolve the problem.

Answer №2

Consider refreshing the webpage using the Ctrl + F5 shortcut. It appears that your browser has cached the CSS file. If the issue persists, try clearing your cache by deleting browsing history.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

What is the best way to combine an array of characters or strings using UNION?

I am currently working with a two-dimensional array called Letters[][] containing characters. Letters[0][0] = A [0][1] = B Letters[1][0] = C [1][1] = D Letters[2][0] = B [2][1] = A [2][2] = F Letters[3][0] = I [3][1] ...

Sending a PHP object as the value of an HTML radio button

When dealing with a custom object that needs to be passed as a form value in a radio button selection, the usual method involves invoking the toString() function on the object. However, this simply converts the object to a String, which may not be ideal fo ...

Is it possible to identify an Ethernet cable using WMI?

I recently installed the WMI code creator on my computer by downloading it from this link. Now, I'm trying to figure out which Namespace and Classes (dynamic or static) I need to choose in the WMI code creator application to receive a callback in WMI ...

Asynchronous loading of HTML templates using JQuery/JavaScript

Currently, I am in the process of creating a webpage that includes code snippets loaded from txt files. The paths and locations of these txt files are stored in a json file. First, the json file is loaded in, and it looks something like this: [ {"root":"n ...

CSS Color-Range Conditional Styling

I am interested in creating a simple chart using divs and spans, with the goal of implementing conditional formatting on each column based on its value to determine height. I have been struggling with figuring out how to make it work similar to Excel' ...

Is it possible to create a fading effect on an image using a border-radius of 50%?

Struggling with fading out an image that's circular in shape due to the border-radius: 50%. <section id="main"> <h1>Non-Important-Text</h1> <h4> it's all fun and games until you can't find a damn sol ...

What are the possible reasons for my load function failing intermittently?

I have encountered an issue with my app where sometimes the content is not loaded into a dialog. Most of the time it works perfectly, but occasionally it fails to display the content. Here is the code snippet that I am using: $('#popup_background&apo ...

Tips for personalizing the appearance of the DataGrid header

I am looking to customize the header of a DataGrid. I have a specific design in mind, as shown in this picture... I have attempted to achieve this using the following code, but it is not working as expected... <DataGridTemplateColumn.Header> &l ...

Why do I have to press the button twice for it to actually work?

I am new to programming and I want to create something that has 3 buttons to control the display of 3 hidden images respectively. When I click the first button, the image appears immediately, but I have to click it twice to show the second image. Can anyon ...

Can someone please tell me how to convert this JavaScript regular expression into PHP code?

I created a JavaScript regular expression (regexp) and now I need it converted to PHP code: var alphaExp = /^[a-zA-ZåäöÅÄÖ\s\-]+$/; if (!fld.value.match(alphaExp)) { //ERROR OUTPUT HERE } Can someone provide me with the equivalent PHP c ...

How are JSON objects formatted when transmitted via URL?

Currently, I am utilizing AJAX to transmit a JSON object to a C# Handler. I'm curious if it's possible to pass the JSON data through a URL for debugging purposes, similar to how we used to include simple parameters in URLs. In the C# handler, th ...

Require help with personalizing a jQuery horizontal menu

I recently downloaded this amazing menu for my first website project By clicking the download source link, you can access the code Now, I need your kind help with two issues: Issue 1: The menu seems to be getting hidden under other elements on the page ...

How to Modify the Top Position of an Element using uBlock Origin

In my efforts to reposition the main text of this website (), I am looking to move it from the middle to the top. The code for the section is <div id="content_blaettern_12793">. The current CSS styling has it fixed in place: #content_blaet ...

Steps to create a hyperlink column in a gridview that is automatically generated

Looking to turn gridview.columns[0] into a hyperlink? I've explored numerous solutions from various sources without success. My grid is populated with a list<>, and I specifically want the first column to function as a clickable link that direct ...

JavaScript Object Notation employing an array format

Can someone please explain how to utilize a JSON data with an array structure in C#? Here is an example of the sample data: { "contact": { "contact_type_ids": ["CUSTOMER"], "name":"JSON Sample ResellerAVP", "main_address": { ...

What is the best way to include values with spaces in an option tag?

I am looking to store a string with multiple words in the value attribute of an option tag. echo "<option value=".$row['code']." ></option>" ; Although I attempted this approach, only a single word is displayed. ...

Flexbox divs that adapt to different screen sizes

Hello everyone, I need help with a school project where I have to make blocks responsive and change their layout based on screen width. Specifically, above 1024px they should be in 2 horizontal rows, and below 1024px in 2 vertical rows, always spelling out ...

The scaling feature in CSS does not function properly in Internet Explorer 8

I've tried multiple approaches to transform the IE Matrix, but I'm facing an issue with the transform scale CSS not functioning in IE8. Code: .fture_box ul li.fture_img img{ width: 451px; height: 284px; display: block; margin: 0 0px 0 11px; pad ...

The second post request is encountering an issue where Request.body is not defined

After researching for similar symptoms, I couldn't find a case that matches mine. I have body-parser properly installed and app.use(bodyParser.json()) app.use(bodyParser.urlencoded({extended: true})) configured accordingly. However, when handl ...

Unable to accommodate additional space, InputGroup is not utilizing the

Using react-bootstrap in my project, I have a component with the following code. I want the input and button to display together and fill up the entire space allocated by the Col. Although the input and button are displaying side by side, they are not ta ...