Jump to content
MakeWebGames

Recommended Posts

Posted

Anyone know how to fix this.. The way it should be is as firefox shows its in this screenshot below.

[ATTACH=CONFIG]371[/ATTACH]

Now when I open it with Internet Explorer it looks like this:

[ATTACH=CONFIG]372[/ATTACH]

I just used an easy html tag like this:

<hr width="95%" align="center">

 

Into the stylesheet file:

[CSS]

hr{

opacity: 0.1;

}

[/CSS]

Like I said in FireFox its the way how it should be, yet Internet Explorer shows something different.

qxo1e9.thumb.png.3e052a6a5b35a4e931759e526512a4ec.png

4kcyyo.thumb.png.699d957ca422e0f097913c18f3464ba7.png

Posted
I think each browser sees thing differently.

Shouldn't it be <hr width="xxx" />

No.

@Lith: HR is perfectly fine, it's much more efficient than an image.

Also, a DIV box works equally well, though a HR is better.

Posted (edited)

ie uses this css property for opacity

 

[color=#070606]filter: alpha(opacity=50);[/color]

 

so u will need

[css]hr {

filter: alpha(opacity=10);

opacity: 0.1;

}[/css]

Edited by bluegman991

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...