Eon-Community help

scolari

spriter god (yes me)
  • 781
    Posts
    20
    Years
    if you view my site in firefox the news box show but in internet explorer part of it doesn't does anyone know?
     
    dont make so many threads about your site in one week. the limit is one thread every one week
     
    Imakuni? said:
    dont make so many threads about your site in one week. the limit is one thread every one week

    Is there a rule like that? Anyway scolari you could have asked all your help in just one page.

    I checked your site in Internet Explorer and even Avant Browser and the saybox loads perfectly. Also a tip, have a navbar to the right otherwise your site looks bit ugly.

    ~ CC
     
    Imakuni? said:
    dont make so many threads about your site in one week. the limit is one thread every one week
    It's okay if one thread is asking for help.
    Chrono Cr@cker said:
    I checked your site in Internet Explorer and even Avant Browser and the saybox loads perfectly. Also a tip, have a navbar to the right otherwise your site looks bit ugly.
    It's the news box, not saybox.
    Ok, did you code the news box in CSS? Internet Explorer has a more limited CSS support than Firefox.
     
    imukani? the other thread is over a week old thankyou and all i did to make the news box is just got a table in dreamweaver and set the images to be the cell background
     
    Chuck us the code >_> ...
     
    Kip-kip said:
    It's the news box, not saybox.
    Ok, did you code the news box in CSS? Internet Explorer has a more limited CSS support than Firefox.

    Oh! Man, sorry about that. Anyway scolari, is your news box fully an image or perhaps your using CSS for it. As JA said, just shows us the code.

    ~ CC
     
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
    <!-- ImageReady Slices (Untitled-1) -->
    <table id="Table_01" width="350" height="200" border="0" cellpadding="0" cellspacing="0">
    <tr valign="bottom" background="https://eon-community.com/new/news/images/news_01.gif">
    <td height="27" colspan="3"><div align="center">{title} [com-link] <b> </b></div></td>
    </tr>
    <tr>
    <td width="30" background="https://eon-community.com/new/news/images/news_02.gif">
    </td>
    <td width="260" valign="top" background="https://eon-community.com/new/news/images/news_03.gif"> {short-story}
    </td>
    <td width="30" background="https://eon-community.com/new/news/images/news_04.gif"> </td>
    </tr>
    <tr background="https://eon-community.com/new/news/images/news_05.gif">
    <td height="27" colspan="3"><div align="center"> {author-name} {date} </div></td>
    </tr>
    </table>
    <!-- End ImageReady Slices -->
    </body>
    </html>
     
    Try:
    Code:
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
    <!-- ImageReady Slices (Untitled-1) -->
    <table id="Table_01" width="350" height="200" border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td  valign="bottom" background="https://eon-community.com/new/news/images/news_01.gif" height="27" colspan="3"><div align="center">{title} [com-link] <b> </b></div></td>
    </tr>
    <tr>
    <td width="30" background="https://eon-community.com/new/news/images/news_02.gif">
    </td>
    <td width="260" valign="top" background="https://eon-community.com/new/news/images/news_03.gif"> {short-story}
    </td>
    <td width="30" background="https://eon-community.com/new/news/images/news_04.gif"> </td>
    </tr>
    <tr>
    <td  background="https://eon-community.com/new/news/images/news_05.gif" height="27" colspan="3"><div align="center"> {author-name} {date} </div></td>
    </tr>
    </table>
    <!-- End ImageReady Slices -->
    </body>
    </html>
    Don't put attributes in the <tr>, put them in the <td> tags. Which means, turn:
    Code:
     <tr valign="bottom" background="https://eon-community.com/new/news/images/news_01.gif">
    into:
    Code:
    <tr>
    <td  valign="bottom" background="https://eon-community.com/new/news/images/news_01.gif" height="27" colspan="3">
     
    Back
    Top