If it shows up any differently for anyone else, let me know. I have no idea what to do, though. o_o
Oh, on that note. I know the little ad currently behind the comic usually goes below it, and I have no idea how to fix that here. Works for my other comic's layout, though. Apparently sometimes it'll pop up and block this one, and it's bad-looking besides. Help?
This layout uses a slightly modified version of the css from one of my main site's layouts (it's totally css-controlled), so it might be a little odd.
Hm, I had a bit of a look at your comic to see if I could spot the problem. I couldn't see any problems when viewing the page with Firefox 3, but it's popping up as clear as ever when viewing it in Internet Explorer.
Though I might be wrong, I did notice a bit of an oddity about the table in which the page is located. I'm also a bit curious why a menu from the other site you linked to shows up in the comic's source code (but you did mention that it's a slightly modified version of the layout of another website of yours).
It would be great if you could post the raw HTML you've used for the comic, as that will make it a bit easier to spot the problem than digging through the source code of a single page where the DD tags have been parsed and all the extra stuff (like the notes, comments and so on) shows.
Do you think having the menu here is superfluous too? I was thinking of taking it out, but if people wanted to check out other parts of the main site, the nav is right there for them to get to.
Oh, raw HTML, of course:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en" dir="ltr">
<head>
<title>LOVEFEAST @ DD</title>
<meta name="Description" content="The Institution for Training in the Arts of Death (or The Institute) is a ground brimming with people from all over striving to become the world's next gods of death." />
<meta name="Keywords" content="web, comic, webcomic, manga, online comic, web comic, webmanga, online manga, anime, comedy, humor, webcomics, online comics, fantasy, yaoi, bl, boy's love, smackjeeves, mirror" />
<meta name="robots" content="index" />
<meta name="Language" content="EN" />
<link rel="SHORTCUT ICON" href="http://lf.senshuu.com/lf.ico" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
Here's hoping that worked because it kept submitting the reply instead of inserting a tag when I clicked "code". c_c EDIT yay it did.
I would note that all this stuff's all valid on the main site (not counting the front page with all the extra crap on it). But I could have overlooked something when modifying it for here~
To be honest with you, the use of z-index has never quite been my strong side when it comes to web design. Can't say I'm exactly fond of it.
Anyways, I took the liberty to look around at the various places where you've got that comic of yours, viewing them in various browsers. They're all showing fine and proper in FireFox, whereas when viewed in Internet Explorer the page keeps leaning too far to one side.
The reasons behind this is most likely that IE has notorious problems when it comes to positioning elements using a z-index. There are some usable, albeit a bit cheap, solutions to such z-index positioning problems.
One you could try is this CSS hack, just to put it in the stylesheet and hope for success;
Someone Said: body {
background: url("
javascript:
document.body.onload = function(){
var xbutton = document.getElementById('xbutton');
if (xbutton) {
xbutton.style.zIndex = 9999;
}
} ");
}
And if that doesn't work.. well, I know my knowledge in the area wouldn't be of much use. Judging by the layout of the comic, though, you could try to redesign it without the use of z-index values.
Oh. Oh! Let's see. I really don't need z-index for mirrors, so I could just take out that code and see if that helps.
I tend to ignore IE when coding, which is bad, since I forget people still use it. Let's tinker!
EDIT And now I've taken out all the z-indexes on my mirror sites. I just took a look at everything on IE and they look the same as everywhere else, but it might be because I'm using IE8 Beta. The main site with z-indexes left in looks fine, too. Hmmmmm
Could you take a screencap if it's still wonky so I know just how bad it is?
Oh, and is it possible to integrate that nasty hack into the body tag if there's already a background url there? ()
The fact that you're using IE8 might be the reason why you're not experiencing it - perhaps finally Microsoft have built a proper z-index support into their browser, heh.
Can't say there's much difference to see, though - the comic page itself still shifts somewhat off to the side in browsers like IE6 and IE7.
As for multiple backgrounds.. it should be doable, from my knowledge, providing you define information for each of the backgrounds.
Say you do try to use multiple backgrounds, you could write it something like this;
.stuff {
background-color: #FFFFFF;
background-image: url("url1"), url("url2");
background-repeat: no-repeat, repeat;
background-position: bottom, top-left;
But now I'm speculating; I haven't exactly tried something like that myself, but I've heard that it's possible.
Ohh, I'll try it.
I know multiple backgrounds are going to be a part of CSS3, but CSS3 is still budding. (Unfortunately. CSS3 would make my layouts 200% easier to do.)
All right, I put the hack in, but only after having defined another background property and not separating them out like that. Anything changed? I notice the thing that's supposed to go at the bottom of pages is still behind the main area. c_c;
Hm, still looks a bit off to the side in some older browsers, and I think the (new) second background element only parse in some of the newer browsers.
Designing websites with older browsers in mind can be a pain, don't you agree? Looking at the general layout of the website, though, I'd say it would be possible to rewrite the layout by some of the old-fashioned, cross-browser ways.
I'll look into that, then. The more I think of it, actually, I could probably do a few things differently here because the setup's different from the main site. ...As long as the main one isn't terribly messed up. e__e;
Looks all neat and center-aligned to me - the DD item that should be at the bottom of the page has found it's right place now, as well.
Though I'd suggest correcting the data in the Body field, as the way the z-index hack has been put in place is keeping the actual background from showing in some browsers.
Also, an alignment fix in the title and navigation area would be an idea. The page content in a whole is center-aligned, but the title image and navigation bar has bumped off to the right.
Here's an image to show what I mean; http://i36.tinypic.com/2zsqn8n.png
The top part shows how the page appears when viewed in IE7 and older, the bottom shows how the elements appear to be aligned. If nothing else, it's better than previously.
I mean... I fixed the body stuff. XD Oh, regarding the title/nav being off-center, it actually kept showing up left-aligned for me when I took the positioning off them (and I have no idea why, they should center like the main content), so I just put it back. Hmmm...
I just realized I still have old IE5 on my mac and looked at all my sites in it just for fun, lol... and while some things are kind of blah it's still not as bad as I thought. XD (But some of my text within divs doesn't center correctly in it. Who knows why. LOL MAC IE5)