|
| If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
If you're on a higher screen resolution (as I am) the forum itself stretches with the browser, but the problem is the banner stays to the left. You can fix this with the center tags in HTML.
HTML Code:
<center>imageurl</center> |
|
||||
|
I think this happened after the latest update, but I can't be sure.
Fred
__________________
"For shame, gentlemen, pack your evidence a little better against another time." -- John Dryden, "The Vindication of The Duke of Guise" 1684 |
|
|||
|
Ever since I've been lurking BAUT I've noticed the banner issue.. And lucky for those annoyed by small things, it's an easy fix.
|
|
|||
|
Quote:
<div align="center"><img src="blablah.com/blah.jpg" alt="more blah blah" /></div> ...or something along those lines.
__________________
|
|
||||
|
Well, the align attribute is deprecated as well. The banner is in a table. To center a table so that it is properly centered, use
<table style="margin-left: auto; margin-right: auto;" ...> Fred
__________________
"For shame, gentlemen, pack your evidence a little better against another time." -- John Dryden, "The Vindication of The Duke of Guise" 1684 |
|
||||
|
I confess having problems with things out of place. When I see a painting on the wall hanging slightly out of square I have an irresistible impulse to fix it. So, i care with the banner not being centered.
Maybe I´m a neurotic.
__________________
"As truth is gathered, I rearrange, Inside out, outside in - Perpetual change." - A British rock band |
|
|||
|
I'd like to reopen this so I can weigh in on the issue as well. I looked at the page source, and the segment which handles the banner is a table in the first cell of the main table:
Code:
<table border="0" width="100%" cellpadding="0" cellspacing="0" align="center"> <tr> <td align="left"> <table border="0" cellpadding="0" cellspacing="0"> <tr><td width="100%"><nobr><a href="http://www.badastronomy.com"><img src="/images/misc/balogo.jpg" width="135" height="113" alt="Bad Astronomy" border="0"></a> <a href="http://www.bautforum.com"><img src="/images/misc/bautlogo.jpg" width="497" height="113" alt="BAUT" border="0"></a> <a href="http://www.universetoday.com"><img src="/images/misc/utlogo.jpg" width="148" height="113" alt="Universe Today" border="0"></a></nobr> </td> </tr> </table></td> <td align="right"> </td> </tr> </table> Code:
<table border="0" width="100%" cellpadding="0" cellspacing="0" align="center"> <tr> <td align="center"> etc. ![]() |