IE11 is unable to display the background image

I am attempting to create a process roadmap by using background images on list items.

The background-image on the list item is not showing up in IE11 (also in all versions of IE10, 9, etc).

CSS CODE


body{padding: 50px 0;}
.status-line {
    width: 80%;
    margin: 0 auto 3%;
}

.status-line ul li {
    text-align: center;
    width: 25%;
    background-image: url("../images/middleCircle.png");
    background-size: 190px;
    background-repeat: no-repeat;
    float: left;
}

.status-line ul li:first-child {
    background-image: url("../images/first-circle.png");
}

.status-line ul li:last-child {
    background-image: url("../images/endcircle.png");
    background-size: 34px;
}

.status-line span {
    padding: 7px 0 2px 0;
    width: 24px;
    text-align: center;
    border-radius: 50%;
    margin: 3px 0 0 8px;
    color: rgb(153,153,153);
    font-size: 12px;
    display: inherit;
}

.status-line #step3{
    padding: 7px 0 5px;
    text-align: center;
    width: 24px;
}

.status-line ul li:first-child span {
    margin-left: 3px;
}

.status-line ul li .process-done {
    padding: 20px 0 4px 0;
    background: #0abc70 url("../images/tick-mark.png");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 50%;
}

.status-line ul li .processing {
    background: #5776e3;
    color: #ffffff;
}

HTML CODE:


   <ul class="cf">
       <li><span id="step1" class="process-done"></span>
           <h1>Application<br>     Received</h1>
       </li>
       <li>
            <span id="step2" class="process-done"></span>
            <h1>Requirements<br> Received &amp; Reviewed</h1>
       </li>
       <li>
            <span id="step3" class="processing">
                3
            </span>
            <h1>Offer</h1>
       </li>
       <li>
            <span id="step4">
                4
            </span>
            <h1>Offer <br> Accepted</h1>
       </li>
    </ul>

I have attached screenshots displaying how it appears in IE, Chrome, and Firefox.

Chrome

Firefox

IE11

Any assistance would be greatly appreciated.

Answer №1

Ensure that your Internet Explorer settings allow for image display.

To modify your Internet Explorer preferences to show images, follow these steps:

  • Launch Internet Explorer.

  • Navigate to the Tools menu and select Internet Options.

  • Access the Advanced tab.

  • Scroll through the Settings list until you locate Multimedia.

  • Verify that the Show Pictures checkbox is checked.

  • Click OK, then click OK again to confirm the changes.

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

Silhouette as the backdrop image

There is a span element that I am using in the following way - <span class="tick"></span> This creates a decorative "tick" for a checkbox. The CSS code used for this is - input[type="checkbox"] + span > span.tick { display: block; ...

What is causing the failure of generating a DIV element with JQuery?

I'm having trouble creating a div element with a class and appending a child to it. I keep getting no response. What could be the issue? JS content function generateTable() { var procDiv = $("<div class='proc-container'></div>" ...

As you scroll, the top block in each of the three columns will remain fixed within its

I need assistance with a problem involving three columns and multiple blocks within each column. Specifically, I want the first block in each column to remain fixed at the top when scrolling. However, once you reach the bottom of each column, the first blo ...

When the page loads in the React platform, a section of the footer unexpectedly overlaps with another component

After working on this section some time ago, I returned to find a strange behavior that I couldn't fix by changing the CSS or wrapping components in divs. If you want to see the issue, check out this screenshot: issueReact To view the code where the ...

Utilizing the Material Design card div element, however the elements inside the card are not properly aligned in the center

I'm attempting to include the align="center" attribute to this Material Design Lite card: <main class="mdl-layout__content" align="center"> <div class="mdl-cell mdl-card mdl-shadow--4dp portfolio-card"> <div class="mdl-card__title"&g ...

Problem with loading images on an HTML webpage

After refreshing the page, I'm encountering an issue where the image is not loading. However, if I switch tabs from MEN to WOMEN and back again, the image will display without any problem. Even making changes in the CSS doesn't seem to affect thi ...

Customizing styles in ZK based on theme

I am currently working on a ZK application that has been styled using CSS, specifically the colors from the Sapphire theme. My goal is to have environment-dependent themes - Sapphire for production and Breeze for stage. While I have successfully implemente ...

No animated scrolling occurring

I have been struggling with this problem for a while now and despite having gone through 100 questions, I still can't find a solution as to why my code snippet is failing. Here is the jQuery code I am using: $("#readmore").click(function(event){ ...

Tips for concealing an entire row of a table with Jquery

I am currently working on a system that involves a table with anchor tags named original and copy in each row. By clicking on these anchor tags, we are able to update the database whether the item is an original or a copy using ajax. However, I am facing a ...

This webpage is optimized for all browsers, with the exception of the Android Browser that may display fonts with larger sizes

When developing my webpage, I made sure it was compatible with all major browsers and even optimized it for mobile browsers. However, I overlooked testing the page on Android browser (specifically Android 4.2) and encountered some issues. The viewport set ...

Is it possible to vertically resize just one of three divs to match the size of the window?

I'm facing a challenge in creating a responsive webpage with multiple divs. Here is the structure I am trying to achieve: <div id="container"> maximum width of 1200 and height of 1000 <div id="vertically-static-top">20 pixels high< ...

Is there a way to verify the file extension in a multi-input form during an upload process?

I am looking for a solution that requests users to upload 4 different files when filling out the form. Check out this example of one of the inputs: <div class="custom-file"> <input type="file" class="custom-file-input" accept="video/*" id="v ...

Can I use Ems instead of pixels for Chrome developer tools?

In all my style-sheets, I opt for using ems instead of px. However, in Chrome Developer Tools, the computed styles/metrics always display in px, even for elements where I specifically used ems: (Here is a screenshot of the computed lengths for a button wi ...

Setting the width of an image within an iframe: A step-by-step guide

Is there a way to adjust the width of an image within an iframe? Typically, if an image with high resolution is placed inside an iframe, the iframe becomes scrollable by default. ...

What is the process for updating a database using a web browser in Django?

I've completed the ADDING stage successfully, but I'm facing a roadblock in the EDITING stage. The objective is to empower the admin to modify the specifics of a specific member via the browser. Any suggestions? While I've made progress with ...

After utilizing the function, the forward and back arrows are no longer visible

After setting up my slideshow, I encountered an issue where clicking the next or previous buttons caused them to shrink down and turn into small grey boxes. Has anyone experienced this before? This relates to PHP/HTML if ($_SERVER['REQUEST_METHOD&ap ...

Improved method for transferring multiple form input values from a child to a parent window

I am working on a project where I have a child window containing multiple radio buttons. My goal is to send all the selected values from these radio buttons to the parent window. Currently, I am achieving this by creating a JavaScript string that contains ...

Attempting to sort through elements in JavaScript

I'm looking to filter specific films based on choices made in the dropdown menus below. <select id="filmDropdown"> <option value="0">All Films</option> <option value="1">Film 1</option> <option ...

Display input field in AngularJS when radio button is selected

My JavaScript array looks like this: $scope.quantityMachines = [ { 'snippet' : 'One' }, { 'snippet' : 'Two' }, { 'snippet' : 'Three or more', 'extraField' : true }, { ' ...

Is it possible to incorporate a php file within .htaccess?

Can anyone provide guidance on how to include a PHP file using .htaccess? I've searched online but haven't been able to find a helpful tutorial or code. Below is the PHP include code that I have tried: <?php require('footer.php'); ...