Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > strange effect with images?

Reply
Thread Tools

strange effect with images?

 
 
John Salerno
Guest
Posts: n/a
 
      02-09-2006
The problems keep coming! Ok, this used to work, and now suddenly it
doesn't. The images I'm using for this menu should have small squares to
the left of the text, but when I use them they don't. Why do they disappear?

Here are the images:
http://www.johnjsal.com/images/l1_down.jpg
http://www.johnjsal.com/images/l1_over.jpg

And here are pages that use them in a menu:
http://www.johnjsal.com/columns.html (uses other styles too)
http://www.johnjsal.com/menu-test.html (just uses the menu stuff, so it
should work)
 
Reply With Quote
 
 
 
 
Jonathan N. Little
Guest
Posts: n/a
 
      02-09-2006
John Salerno wrote:
> The problems keep coming! Ok, this used to work, and now suddenly it
> doesn't. The images I'm using for this menu should have small squares to
> the left of the text, but when I use them they don't. Why do they
> disappear?
>
> Here are the images:
> http://www.johnjsal.com/images/l1_down.jpg
> http://www.johnjsal.com/images/l1_over.jpg
>
> And here are pages that use them in a menu:
> http://www.johnjsal.com/columns.html (uses other styles too)
> http://www.johnjsal.com/menu-test.html (just uses the menu stuff, so it
> should work)


Colors and backgrounds
http://www.w3.org/TR/CSS21/colors.ht...round-position

Why don't you save yourself some grief and confusion and peruse the CSS
properties and familiarize yourself first...

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
 
Reply With Quote
 
 
 
 
John Salerno
Guest
Posts: n/a
 
      02-09-2006
Jonathan N. Little wrote:
> John Salerno wrote:
>> The problems keep coming! Ok, this used to work, and now suddenly it
>> doesn't. The images I'm using for this menu should have small squares
>> to the left of the text, but when I use them they don't. Why do they
>> disappear?
>>
>> Here are the images:
>> http://www.johnjsal.com/images/l1_down.jpg
>> http://www.johnjsal.com/images/l1_over.jpg
>>
>> And here are pages that use them in a menu:
>> http://www.johnjsal.com/columns.html (uses other styles too)
>> http://www.johnjsal.com/menu-test.html (just uses the menu stuff, so
>> it should work)

>
> Colors and backgrounds
> http://www.w3.org/TR/CSS21/colors.ht...round-position
>
> Why don't you save yourself some grief and confusion and peruse the CSS
> properties and familiarize yourself first...
>


I thought I had, and this had worked one time before. Now that I read
your link, I remember I had to change some position properties to get it
in the right spot, so that must have messed me all up.

Thanks.
 
Reply With Quote
 
John Salerno
Guest
Posts: n/a
 
      02-10-2006
John Salerno wrote:
> Jonathan N. Little wrote:
>> John Salerno wrote:
>>> The problems keep coming! Ok, this used to work, and now suddenly it
>>> doesn't. The images I'm using for this menu should have small squares
>>> to the left of the text, but when I use them they don't. Why do they
>>> disappear?
>>>
>>> Here are the images:
>>> http://www.johnjsal.com/images/l1_down.jpg
>>> http://www.johnjsal.com/images/l1_over.jpg
>>>
>>> And here are pages that use them in a menu:
>>> http://www.johnjsal.com/columns.html (uses other styles too)
>>> http://www.johnjsal.com/menu-test.html (just uses the menu stuff, so
>>> it should work)

>> Colors and backgrounds
>> http://www.w3.org/TR/CSS21/colors.ht...round-position
>>
>> Why don't you save yourself some grief and confusion and peruse the CSS
>> properties and familiarize yourself first...
>>

>
> I thought I had, and this had worked one time before. Now that I read
> your link, I remember I had to change some position properties to get it
> in the right spot, so that must have messed me all up.
>
> Thanks.


Nope, even putting that stuff back in didn't fix the problem.
 
Reply With Quote
 
John Salerno
Guest
Posts: n/a
 
      02-10-2006
John Salerno wrote:
> The problems keep coming! Ok, this used to work, and now suddenly it
> doesn't. The images I'm using for this menu should have small squares to
> the left of the text, but when I use them they don't. Why do they disappear?
>
> Here are the images:
> http://www.johnjsal.com/images/l1_down.jpg
> http://www.johnjsal.com/images/l1_over.jpg
>
> And here are pages that use them in a menu:
> http://www.johnjsal.com/columns.html (uses other styles too)
> http://www.johnjsal.com/menu-test.html (just uses the menu stuff, so it
> should work)


Ok, I'm very confused. On a whim (and out of desperation), I copied the
CSS from the external file and pasted it as an internal style sheet in
my html file, and now the images work! Why would this solve the problem
when nothing else changed?
 
Reply With Quote
 
Jonathan N. Little
Guest
Posts: n/a
 
      02-10-2006
John Salerno wrote:
> John Salerno wrote:
>
>> Jonathan N. Little wrote:
>>
>>> John Salerno wrote:
>>>
>>>> The problems keep coming! Ok, this used to work, and now suddenly it
>>>> doesn't. The images I'm using for this menu should have small
>>>> squares to the left of the text, but when I use them they don't. Why
>>>> do they disappear?
>>>>
>>>> Here are the images:
>>>> http://www.johnjsal.com/images/l1_down.jpg
>>>> http://www.johnjsal.com/images/l1_over.jpg
>>>>
>>>> And here are pages that use them in a menu:
>>>> http://www.johnjsal.com/columns.html (uses other styles too)
>>>> http://www.johnjsal.com/menu-test.html (just uses the menu stuff, so
>>>> it should work)
>>>
>>> Colors and backgrounds
>>> http://www.w3.org/TR/CSS21/colors.ht...round-position
>>>
>>> Why don't you save yourself some grief and confusion and peruse the
>>> CSS properties and familiarize yourself first...
>>>

>>
>> I thought I had, and this had worked one time before. Now that I read
>> your link, I remember I had to change some position properties to get
>> it in the right spot, so that must have messed me all up.
>>
>> Thanks.

>
>
> Nope, even putting that stuff back in didn't fix the problem.


try:

url(../images/l1_down.jpg);
url(../images/l1_over.jpg);

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
 
Reply With Quote
 
John Salerno
Guest
Posts: n/a
 
      02-10-2006
Jonathan N. Little wrote:
> John Salerno wrote:
>> John Salerno wrote:
>>
>>> Jonathan N. Little wrote:
>>>
>>>> John Salerno wrote:
>>>>
>>>>> The problems keep coming! Ok, this used to work, and now suddenly it
>>>>> doesn't. The images I'm using for this menu should have small
>>>>> squares to the left of the text, but when I use them they don't. Why
>>>>> do they disappear?
>>>>>
>>>>> Here are the images:
>>>>> http://www.johnjsal.com/images/l1_down.jpg
>>>>> http://www.johnjsal.com/images/l1_over.jpg
>>>>>
>>>>> And here are pages that use them in a menu:
>>>>> http://www.johnjsal.com/columns.html (uses other styles too)
>>>>> http://www.johnjsal.com/menu-test.html (just uses the menu stuff, so
>>>>> it should work)
>>>> Colors and backgrounds
>>>> http://www.w3.org/TR/CSS21/colors.ht...round-position
>>>>
>>>> Why don't you save yourself some grief and confusion and peruse the
>>>> CSS properties and familiarize yourself first...
>>>>
>>> I thought I had, and this had worked one time before. Now that I read
>>> your link, I remember I had to change some position properties to get
>>> it in the right spot, so that must have messed me all up.
>>>
>>> Thanks.

>>
>> Nope, even putting that stuff back in didn't fix the problem.

>
> try:
>
> url(../images/l1_down.jpg);
> url(../images/l1_over.jpg);
>


oh my god, i'm so dense! i was thinking of the html file's path to the
iamge, and not the css file! thank you!
 
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
ipv6 bgp strange effect arne Cisco 2 10-21-2006 12:27 PM
Strange side effect with events =?Utf-8?B?R2lhbmNhcmxv?= ASP .Net 2 01-13-2005 03:03 PM
strange side effect with lists!? Michael Hoffman Python 5 10-13-2004 01:13 PM
Strange Window effect kamputo Computer Support 2 12-22-2003 05:46 PM
Strange effect with PipedOutputStream/PipedInputStream Henning Moll Java 4 11-03-2003 02:09 PM



Advertisments