Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > The ^*(*)&)( Internet Explorer

Reply
Thread Tools

The ^*(*)&)( Internet Explorer

 
 
Shelly
Guest
Posts: n/a
 
      11-29-2007
I have the following:

#index-02 {
position:absolute;
left:0px;
top:132px;
width:900px;
/*height:39px;*/
background-image: url(images/index_02.gif);
}

This dispalys perfectly in FF, but in IE7, the background image shows up
twice as if it is tiling vertically. The invocation is very simple:

<div id=index_02"> A one row table here</div>

The image appears twice, with the text from the table in the top one and
nothing but the background image in the lower, second, one. I had the
height specified, but then commented it out. Neither way works.

--
Shelly


 
Reply With Quote
 
 
 
 
Shelly
Guest
Posts: n/a
 
      11-29-2007
Shelly wrote:
> I have the following:
>
> #index-02 {
> position:absolute;
> left:0px;
> top:132px;
> width:900px;
> /*height:39px;*/
> background-image: url(images/index_02.gif);
> }
>
> This dispalys perfectly in FF, but in IE7, the background image shows
> up twice as if it is tiling vertically. The invocation is very
> simple:
> <div id=index_02"> A one row table here</div>
>
> The image appears twice, with the text from the table in the top one
> and nothing but the background image in the lower, second, one. I
> had the height specified, but then commented it out. Neither way
> works.


Here is another thing. I have two more definitions:
#index-03 {
position:absolute;
left:0px;
top:171px;
width:216px;
height:480px;
background-image: url(images/index_03.gif);

}

#index-04 {
position:absolute;
left:216px;
top:171px;
width:684px;
height:143px;
background-image: url(images/index_04.gif);

}

It turns out that index-04 covers the bottom tile, but index=03 doesn't.

I am baffled.

--
Shelly


 
Reply With Quote
 
 
 
 
Shelly
Guest
Posts: n/a
 
      11-29-2007
Shelly wrote:
> Shelly wrote:
>> I have the following:
>>
>> #index-02 {
>> position:absolute;
>> left:0px;
>> top:132px;
>> width:900px;
>> /*height:39px;*/
>> background-image: url(images/index_02.gif);
>> }
>>
>> This dispalys perfectly in FF, but in IE7, the background image shows
>> up twice as if it is tiling vertically. The invocation is very
>> simple:
>> <div id=index_02"> A one row table here</div>
>>
>> The image appears twice, with the text from the table in the top one
>> and nothing but the background image in the lower, second, one. I
>> had the height specified, but then commented it out. Neither way
>> works.

>
> Here is another thing. I have two more definitions:
> #index-03 {
> position:absolute;
> left:0px;
> top:171px;
> width:216px;
> height:480px;
> background-image: url(images/index_03.gif);
>
> }
>
> #index-04 {
> position:absolute;
> left:216px;
> top:171px;
> width:684px;
> height:143px;
> background-image: url(images/index_04.gif);
>
> }
>
> It turns out that index-04 covers the bottom tile, but index=03
> doesn't.
> I am baffled.


I would like to know the answer for this. In the meantime I have a HACK
"fix". I made the z-index for index-02 to be 0 and made the z-index for
index-03 and index-04 ro be 1. Now the bottom image from index-02 is
maxked.

--
Shelly


 
Reply With Quote
 
Beauregard T. Shagnasty
Guest
Posts: n/a
 
      11-29-2007
Shelly wrote:

> I would like to know the answer for this.


Post the URL.

--
-bts
-Motorcycles defy gravity; cars just suck
 
Reply With Quote
 
nice.guy.nige
Guest
Posts: n/a
 
      11-30-2007
While the city slept, Shelly () feverishly
typed...

[...]
> background-image: url(images/index_02.gif);
>
> This dispalys perfectly in FF, but in IE7, the background image shows
> up twice as if it is tiling vertically.

[...]

It is late here, and I have just got back from the pub, so maybe I am
missing something... but have you considered using the "repeat" value? eg.
background-repeat: no-repeat; ?

Cheers,
Nige

--
Nigel Moss http://www.nigenet.org.uk
Mail address will bounce. | Take the DOG. out!
"Your mother ate my dog!", "Not all of him!"


 
Reply With Quote
 
Nik Coughlin
Guest
Posts: n/a
 
      11-30-2007

"nice.guy.nige" <> wrote in message
news:474f5fac$0$47123$ reenews.net...
> While the city slept, Shelly () feverishly
> typed...
>
> [...]
>> background-image: url(images/index_02.gif);
>>
>> This dispalys perfectly in FF, but in IE7, the background image shows
>> up twice as if it is tiling vertically.

> [...]
>
> It is late here, and I have just got back from the pub, so maybe I am
> missing something... but have you considered using the "repeat" value? eg.
> background-repeat: no-repeat; ?


Which you could combine with the css for your backround-image using CSS's
background shorthand, like so?

background: url(images/index_02.gif) no-repeat;

 
Reply With Quote
 
Shelly
Guest
Posts: n/a
 
      11-30-2007
nice.guy.nige wrote:
> While the city slept, Shelly ()
> feverishly typed...
>
> [...]
>> background-image: url(images/index_02.gif);
>>
>> This dispalys perfectly in FF, but in IE7, the background image shows
>> up twice as if it is tiling vertically.

> [...]
>
> It is late here, and I have just got back from the pub, so maybe I am
> missing something... but have you considered using the "repeat"
> value? eg. background-repeat: no-repeat; ?


No, I haven't. You see I am a php person and am just learning a lot of this
stuff. Thanks. I'll try it.

--
Shelly


 
Reply With Quote
 
Shelly
Guest
Posts: n/a
 
      11-30-2007
Nik Coughlin wrote:
> "nice.guy.nige" <> wrote in message
> news:474f5fac$0$47123$ reenews.net...
>> While the city slept, Shelly ()
>> feverishly typed...
>>
>> [...]
>>> background-image: url(images/index_02.gif);
>>>
>>> This dispalys perfectly in FF, but in IE7, the background image
>>> shows up twice as if it is tiling vertically.

>> [...]
>>
>> It is late here, and I have just got back from the pub, so maybe I am
>> missing something... but have you considered using the "repeat"
>> value? eg. background-repeat: no-repeat; ?

>
> Which you could combine with the css for your backround-image using
> CSS's background shorthand, like so?
>
> background: url(images/index_02.gif) no-repeat;


I tried this. Now the image doesn't appear at all.

--
Shelly


 
Reply With Quote
 
Jonathan N. Little
Guest
Posts: n/a
 
      11-30-2007
Shelly wrote:
> Nik Coughlin wrote:
>> "nice.guy.nige" <> wrote in message
>> news:474f5fac$0$47123$ reenews.net...
>>> While the city slept, Shelly ()
>>> feverishly typed...
>>>
>>> [...]
>>>> background-image: url(images/index_02.gif);
>>>>
>>>> This dispalys perfectly in FF, but in IE7, the background image
>>>> shows up twice as if it is tiling vertically.
>>> [...]
>>>
>>> It is late here, and I have just got back from the pub, so maybe I am
>>> missing something... but have you considered using the "repeat"
>>> value? eg. background-repeat: no-repeat; ?

>> Which you could combine with the css for your backround-image using
>> CSS's background shorthand, like so?
>>
>> background: url(images/index_02.gif) no-repeat;

>
> I tried this. Now the image doesn't appear at all.
>


Shelly: Why don't we stop this guessing game "imagining what your page
might look like" and you post a URL this time? I bet we can find the
solution for you *first* shot.

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
 
Reply With Quote
 
dorayme
Guest
Posts: n/a
 
      11-30-2007
In article <9f8ee$474f9ce4$40cba7b8$>,
"Jonathan N. Little" <> wrote:

> Shelly: Why don't we stop this guessing game "imagining what your page
> might look like" and you post a URL this time? I bet we can find the
> solution for you *first* shot.


Was just thinking this very thing.

--
dorayme
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Internet Explorer 8: C:\Program Files\Internet Explorer\iexplore.exe vs C:\Program Files (x86)\Internet Explorer\iexplore.exe Nathan Sokalski Windows 64bit 16 02-22-2010 08:31 AM
internet explorer 7 - Internet Explorer cannot display the webpag sandy j Windows 64bit 0 05-02-2009 02:12 AM
Internet Explorer + Windows Explorer + Browsing Sad Computer Support 1 09-08-2004 05:53 PM
Windows Explorer - Internet explorer JamesBenson Computer Support 19 07-31-2004 12:54 AM
can surf in Windows Explorer not Internet Explorer Billh Computer Support 0 05-02-2004 08:47 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57