navigation
a webmaster learning community
     Home    Register     Search      Help      Login    
Sponsors

Shopping Cart Software
Ecommerce software integrated into Frontpage, Dreamweaver and Golive templates. No monthly fees and available in ASP and PHP versions.

Website Templates
We also have a wide selection of Dreamweaver, Expression Web and Frontpage templates as well as webmaster tools and CSS layouts.

Frontpage website templates
Creative Website Templates for FrontPage, Dreamweaver, Flash, SwishMax

Search Forums
 

Advanced search
Recent Posts

 Todays Posts
 Most Active posts
 Posts since last visit
 My Recent Posts
 Mark posts read

 

IE7 Looks good but FF2 has problems

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
Printable Version 

All Forums >> Web Development >> Expression Web Help >> IE7 Looks good but FF2 has problems
Page: [1]
 
sculpturedolls

 

Posts: 8
Joined: 3/5/2008
Status: offline

 
IE7 Looks good but FF2 has problems - 3/5/2008 13:27:57   
Hi everyone,:)

This is my first post too and sort of stuck with my new website that I made for my husband. Used Dreamweaver to create it. The total training tutorials really helped a lot.

At the end of making the website, I dowloaded Firefox to see how it looked there and there is where my problems began. Was able to snap things back into place after some trial and error. Used some info found here at this forum and it helped. :)

Still having a couple problems with how the pages look in Firefox 2 (my browser is IE7):
Here's the link to our new website: www.zoodoc-stories.com

When clicking on the "Excerpt from War Star Rising"- I get this error message in FF2. It does go ahead and shows the excerpt but has a dialog box warning. Anyway to get this message not to show?----

"Not Found

The requested URL /A War Star Rising.fdr was not found on this server."

The only other thing that I can't seem to figure out is how to get the green footer to all be green. For some reason it has a break in the green bar and then shows the copyright in green:).

Any help at all would be greatly appreciated. Somehow the tutorials only mentioned previewing your website in multiple browsers but never said what to do when they don't look right!:)

Thanks for your help,

Tamara
Tailslide

 

Posts: 6267
Joined: 5/10/2005
From: Out here on the raggedy edge
Status: offline

 
RE: IE7 Looks good but FF2 has problems - 3/5/2008 13:44:49   
I'd replace that whole link with this instead:

<a href="test.html" onclick="return !window.open(this.href, 'popup', 'width=300,scrollbars=yes')">Excerpt from "War Star Rising" (popup)</a>


The above has the advantage that if users have popups disabled (as many do) then it works like a normal link.

_____________________________

"My strategy is so simple an idiot could have devised it"
Little Blue Plane Web Design | Blood, Sweat & Rust - A Land Rover restoration project

(in reply to sculpturedolls)
sculpturedolls

 

Posts: 8
Joined: 3/5/2008
Status: offline

 
RE: IE7 Looks good but FF2 has problems - 3/5/2008 15:16:24   
Thanks Tailslide :-) I changed the popup to a regular link. That fixed that problem completely. I appreciate your help with that.

Does anyone know what might be a cure for the footer problem? Right now it shows up as a partial green footer with a break that shows the background and then the copyright info. In IE7 it's a solid green background strip for the footer and that's the way I'd like it to be if possible.

Thanks for any help. I'm a newbie and am green behind the ears!

~Tamara

(in reply to Tailslide)
coreybryant

 

Posts: 2479
Joined: 3/17/2002
From: Castle Rock CO USA
Status: offline

 
RE: IE7 Looks good but FF2 has problems - 3/5/2008 16:47:36   
You might consider putting everything into one style sheet (to help maintain it later).

If you have Expression Web, take a look at the source code - it will highlight a couple of ending tags that are out of place.

I did not take a look at all the styles but you have
  <tr>
    <td align="center" class="footer">      <p class="footer"><a href="index.html">
	Home</a> ~ <a href="Novels.html">Novels</a> ~ <a href="MeetZooDoc.html">Meet 
	ZooDoc</a> ~ <a href="Photos.html">Photos</a> ~ <a href="Questions.html">
	Questions</a></p></td>

    <td class="copyright">      <div align="center" class="footer">
        <div class="copyright">© ZooDoc_RP 2008 <u>All Rights Reserved</u></div>
    </div></td>
  </tr>
Chances are this footer / copyright is where your colors are and it might be confusing as to which one you want. Styles will overwrite one another so the
<div class="copyright">
should hopefully be the one that is shown (overwriting the previous two (if any styles are in there)).

_____________________________

Corey R. Bryant
Merchant Accounts | Toll Free Numbers | Expression Web Blog

(in reply to sculpturedolls)
sculpturedolls

 

Posts: 8
Joined: 3/5/2008
Status: offline

 
RE: IE7 Looks good but FF2 has problems - 3/5/2008 17:52:30   
Hi Corey,

Thanks for that. I think that the styles were sort of doing some canceling of each other out somehow. I did have both the footer style and the copyright style set to the same green color. For some reason a portion of the area ended up being the tables background image light green color. So I took out the color out of the copyright style.

So now the whole footer is green but I can't get it to have the padding that I need. I go to footer and copyright and try to add padding (or margin on top of the div tag) and nothing seems to help me to have padding. Would like the padding of the footer to look like the individual photo pages like shown on this page.

http://www.zoodoc-stories.com/homeanimals.html

... instead of how the footer looks all skinny like on this page

www.zoodoc-stories.com

I think I put so many styles etc. that something is overriding when I try to add padding.
With my first try at webdesign, I'm almost finished! Just this last thing to figure out.

Thanks for any help if you see what I might change,

~Tamara

(in reply to coreybryant)
coreybryant

 

Posts: 2479
Joined: 3/17/2002
From: Castle Rock CO USA
Status: offline

 
RE: IE7 Looks good but FF2 has problems - 3/5/2008 18:45:45   
If you think you have too many styles - you probably do.

I would first get all the styles in one place (by the name - I would not put spaces in the file / folder names and I would not use (single) quotation marks in the file / folder names). But if you do not have the styles in on file, it will make it very difficult for you to work with them - and drive you crazy when you are trying to get something to work. And it will make it easier for others to help you as well.

And definitely have all the properties in one place. One the two pages you gave, you have
.copyright {
	text-decoration: none;
	padding: 5px;
	font-size: 12px;
	float: right;
	vertical-align: middle;
	margin: 0px;
}
in your /CSS-styles/Ron's%20styles.css page and then you also have
.footer .footer .copyright {
	margin-top: 5px;
}
on your homeanimals.html page. This could potentially be the reason why you see different footers.

BTW, did I mention have those CSS all over the place will drive you crazy trying to figure out the little things and make it more difficult for users to help.

_____________________________

Corey R. Bryant
Merchant Accounts | Toll Free Numbers | Expression Web Blog

(in reply to sculpturedolls)
sculpturedolls

 

Posts: 8
Joined: 3/5/2008
Status: offline

 
RE: IE7 Looks good but FF2 has problems - 3/5/2008 22:57:20   
Thanks Corey,

Since is my first website, I went a little crazy in making css styles. Half of those styles I ended up not using.:) I will definitely work on being concise with the style for my own website. Hubby's happy with this one though, so I'm happy.

Finally got the footer working right and with the right padding. Thanks for your tips, it really helped clue me in to the problem.

~Tamara


(in reply to coreybryant)
Page:   [1]

All Forums >> Web Development >> Expression Web Help >> IE7 Looks good but FF2 has problems
Page: [1]
Jump to: 1





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts