Niklas Rosencrantz
Niklas Rosencrantz

Reputation: 26647

Why won't my image display in firefox?

I created a fiddle but the image doesn't display in firefox. Why not? The html is

<div id="message1" class="alert alert-warning alert-dismissable flyover flyover-centered">
  <button type="button" class="close" data-dismiss="alert" aria-hidden="true">x</button>
  <strong></strong> User added
</div>

<!-- Menubar -->

<div id="menubar">
    <div id="menubarcentercontainer">
        <div id="menubarleft">
        </div>
        <div id="menubarright">
            <div id="menubaruserinfo" class="menubaritem">
                <p><a href="javascript:showLoginBox();">Sign In or Sign Up</a></p>          
            </div>

            <div class="menubaritem">
                <p>Get Onacci</p>
            </div>
        </div>
    </div>
</div>

<img id="top-header" src="https://wwwe.onacci.com/onacci.png">
<form id="searchbox" action="connect.php" method="POST">
    <div class="control-group" style="float:left;">
        <div class="controls" style="float:left;">
            <input type="text" id="email" name="email" placeholder="Enter your email" class="input-xlarge">
            <p class="help-block">Please provide your E-mail</p>
        </div>
    </div>
    <div style="float:left;">
        <!-- Button -->
        <button type="submit" class="btn btn-success">Add me to waiting list</button>
    </div>
</form>

Upvotes: 0

Views: 86

Answers (3)

Moin Shaikh
Moin Shaikh

Reputation: 386

It is showing up on Firefox v40. However, if it is an issue of "This Connection is Untrusted" error, then better you refer to this solution at official Firefox support forum: https://support.mozilla.org/en-US/kb/connection-untrusted-error-message

Upvotes: 1

n1kkou
n1kkou

Reputation: 3142

Because you have an "e" on your www url request(image path). Also, the image URL is untrusted and firefox will keep blocking the image source url.

Upvotes: 2

Curtis
Curtis

Reputation: 103348

Try requesting the image URL in a new window.

It's classed as an untrusted connection by default in Firefox and therefore the image won't download and display.

enter image description here

Upvotes: 2

Related Questions