Wednesday, January 10, 2007

Technical assistance please -

I've noticed that my site looks like crap in Firefox. Does anyone out there have any suggestions for fixing things areound here so that it looks good in both IE and Firefox? Any help would be appreciated.

4 Comments ↓

Anonymous Anonymous  at 6:18 PM 

Hmm, I usually look at the site in Safari, but opening it in Firefox it seems to look the same to me. This is on a Mac, of course.

Anonymous potatojunkie  at 4:42 PM 

looks good on my firefox..

Blogger Hrbek  at 6:01 PM 

In your code where it starts:

"<style type="text/css">

}"

Turn that last bracket around to be an open bracket ... that might be your deal.

Looks like IE is ignoring it, but Firefox being more literal.

Anonymous William  at 4:47 PM 

What seems to be the problem is that there are two }'s too much, and your background-image doesn't stretch down. Here's the fix: in your template, replace the entire section from <style type="text/css"> until /* Header with

body {font: 11px/17px Georgia, Times New Roman, Times, serif; background-color:#E8E3BB; color: #333333; }
a { text-decoration: none; font-weight: bold; }
a:link {color: #555577; }
a:active {color: #6666AA; }
a:visited {color: #778877; }
a:hover {color: #555599; text-decoration: underline; }
a img { border-width:0; }

and add

#content::after { content: ''; display: block; clear: both; }

at the end of the /* content section.

Post a Comment