Some website feedback

Use this forum for general discussions

Some website feedback

Postby Grue » Tue Jan 17, 2006 3:28 pm

Few things
a) This may be an ie only thing, but whenever you roll the mouse over the logo that spans the top of the screen e.g. going from the site to any of the manus at the top, it flashes white and redownloads. It's no biggie, but it get annoying after a while.
b) A home button in the list on the left would be nice.
Grue
40 Prime Poster
 
Posts: 99
Joined: Fri Jan 07, 2005 3:44 pm
Status: Offline

Postby Deju » Tue Jan 17, 2006 3:48 pm

If you click anywhere on the top "Slothmud III" image, it links to the home page... i suspect this is probably why there is no "home" link on the left-side list.
User avatar
Deju
Double 40 Poster
 
Posts: 121
Joined: Tue Mar 09, 2004 2:08 pm
Status: Offline

Postby Clink » Tue Jan 17, 2006 4:00 pm

What version of ie? I use 6.0.29 and don't see what you describe.
User avatar
Clink
Greater God
 
Posts: 140
Joined: Fri May 21, 2004 3:29 pm
Status: Offline

Postby 12345 » Tue Jan 17, 2006 4:55 pm

I have 6.0.28000....

I get it to. When you mouseover the panorama.jpg it flashes white for a second. It doesn't do it just once either, it happens every time the mouse is over it.

I'm also using my work machine, which is Windows 2000, but the resources are good enough that it shouldn't be speed, memory or connection related.

I scanned the source and from my meager understanding, didn't see anything that might account for it. The header on the old site never gave me this type of affect though.

Of interesting note, if you move the cursor off the banner while it's flashing, the message that appears in the status bar at the bottom says:

Downloading picture http://www.slothmud.org/themes/Andergas ... norama.jpg

Again, not sure why a mouseover would cause a complete refresh of that window... but that appears to be exactly what it does.
Kein Mehrheit Fur Die Mitleid -KMFDM
User avatar
12345
Avatar Poster
 
Posts: 1024
Joined: Thu Oct 21, 2004 10:27 am
Location: 127.0.0.1
Status: Offline

Postby blackmore » Tue Jan 17, 2006 6:16 pm

I'm not seeing the flashing image, though when I mouse over the image, I do get a series of hyphens that go across the center of the image. One shows up under the dragon's tail, the others are across horizontally from that one. They're not a big deal, I just thought I'd point it out.
blackmore
Triple 40 Poster
 
Posts: 259
Joined: Wed Apr 21, 2004 11:51 pm
Status: Offline

Postby 12345 » Tue Jan 17, 2006 6:40 pm

Yeah, at home and using IE 6.0.29, I got the same thing as blackmore. Probably wouldn't have noticed if Blackmore hadn't mentioned it :)
Kein Mehrheit Fur Die Mitleid -KMFDM
User avatar
12345
Avatar Poster
 
Posts: 1024
Joined: Thu Oct 21, 2004 10:27 am
Location: 127.0.0.1
Status: Offline

Postby Grue » Tue Jan 17, 2006 7:06 pm

6.0.29 with sp2 running on Windows XP sp2 here on a Dell notebook, and it is very noticeable on this machine.

Also notice if I try log in at teh forum it fails still, have to log in from the bottom left.
Grue
40 Prime Poster
 
Posts: 99
Joined: Fri Jan 07, 2005 3:44 pm
Status: Offline

Postby Weasel » Tue Jan 17, 2006 7:30 pm

ditto here.. looking at coding.. using a mix of css and tables might be the issue.. IE is a friggin pain at times with css..
[code:svjhofla]
<td colspan="5">
<div id="header" onclick="location.href='http://www.slothmud.org'"title="SlothMUD's Home";><a href="http://www.slothmud.org/">
<table width="100%" class="panorama" height="140">
<STYLE>
.panorama{ cursor:pointer; }
</STYLE>
<tr>
....etc
[/code:svjhofla]
Just use a normal html href tag for the link should solve it ...also didn't see a closing tag for that td colspan, but was only a quick look..
User avatar
Weasel
Hall of Fame Avatar Poster
 
Posts: 2174
Joined: Sun Jan 04, 2004 4:27 am
Status: Offline

Postby *Splork* » Tue Jan 17, 2006 7:55 pm

My IE and Firefox, the top shows up correctly. So unless somebody can email me a fix I won't be able to track down the bug. Maybe Clink can look at it when he gets a chance. The problem I have been running into is one set of code works for IE, and an entire different set works for Firefox. So basically I just hacked the hell out of it until it looked correctly in the browsers I have been using to test it with...

We are trying to clean up the site, so I removed the home link and added the clickable top picture. Hopefully we will figure out how to fix the image problem....

Also, I am using IE 6.028 sp1 because sp2 screwed up my dual core system. Maybe it has something to do with the sp2 shrugs...
User avatar
*Splork*
Site Admin
 
Posts: 1135
Joined: Tue Apr 29, 2003 8:50 pm
Status: Offline

Postby 12345 » Wed Jan 18, 2006 10:34 am

Ok, I'm back at work again. IE 6.0.28 and SP1 to boot. Still flashing, and now I notice the dashes as well... though on an interesting note, they appear to be colored to blend into the background.

So all I can really say is that it doesn't seem to be a SP2 issue.
Kein Mehrheit Fur Die Mitleid -KMFDM
User avatar
12345
Avatar Poster
 
Posts: 1024
Joined: Thu Oct 21, 2004 10:27 am
Location: 127.0.0.1
Status: Offline

Postby Weasel » Wed Jan 18, 2006 4:04 pm

Is there a [/div] tag somewhere for the [div id="header" ...] tag there in that first table? Can't spot it..

..seem to have that panorama as an inline style, as a table class, and as a div class.. probably confusing the poor little MS browser.. heh.

Maybe just set that area as a div id with the background as the panarama.jpg in the style sheet, then create a transparent 1px by 1px gif and in that space use it as the link to the homepage with the gif resized to width 100% and height 140px..
ie:

in the css place something like this:
[code:2guj48p3]
#headspace {
margin: 0px auto;
height: 140px;
background: url("http://path_to/panarama.gif");
}
[/code:2guj48p3]


and in the page code place this:
[code:2guj48p3]
<div id="headspace">
<a href="http://www.slothmud.org"><img src="http://path_to/transparent.gif" width="100%" height="142" border="0" alt="home" /></a>
</div>
[/code:2guj48p3]

yes?
User avatar
Weasel
Hall of Fame Avatar Poster
 
Posts: 2174
Joined: Sun Jan 04, 2004 4:27 am
Status: Offline

Postby *Splork* » Wed Jan 18, 2006 5:20 pm

Weasel's stuff was way over my head, but I think I found the bug anyways due to his work...

Please check and see if it still shows up odd for those of you who this affected...

Thanks Weasel,

Splork
User avatar
*Splork*
Site Admin
 
Posts: 1135
Joined: Tue Apr 29, 2003 8:50 pm
Status: Offline

Postby 12345 » Wed Jan 18, 2006 5:31 pm

My work computer shows perfect. Nice! :D
Kein Mehrheit Fur Die Mitleid -KMFDM
User avatar
12345
Avatar Poster
 
Posts: 1024
Joined: Thu Oct 21, 2004 10:27 am
Location: 127.0.0.1
Status: Offline

Postby Grue » Wed Jan 18, 2006 7:17 pm

Fixed for me. Thanks muchly Splork.
Grue
40 Prime Poster
 
Posts: 99
Joined: Fri Jan 07, 2005 3:44 pm
Status: Offline

Postby 12345 » Wed Jan 18, 2006 8:18 pm

Shows perfect at home as well, very nice :)
Kein Mehrheit Fur Die Mitleid -KMFDM
User avatar
12345
Avatar Poster
 
Posts: 1024
Joined: Thu Oct 21, 2004 10:27 am
Location: 127.0.0.1
Status: Offline

Next

Return to General Chat (Registered)

Who is online

Users browsing this forum: No registered users and 17 guests