|
03-18-2009, 04:25 PM | #21 |
Ambassador of Quan
|
Re: Check it out....
|
03-18-2009, 04:29 PM | #22 |
Ambassador of Quan
|
Re: Check it out....
Another question. The top image/nav is an image map. How do I make it load faster and work properly on the first rollover? It will delay and then work. Also once it has been rolled over it works really quickly there on after. Any suggestions?
|
03-18-2009, 04:53 PM | #23 |
Guest
Posts: n/a
|
Re: Check it out....
What's with all this?
<p2> <b><big>Career Highlights</big></b><br> <br> <b><big>2008</big></b> &n bsp; &nbs p; &n bsp; &nbs p; &n bsp; Raced with MSCS & Midwest All-Stars<br> &n bsp; &nbs p; &n bsp; &nbs p; &n bsp; &nbs p; Fi nished 10th out 40 cars in debut race<br> &n bsp; &nbs p; &n bsp; &nbs p; &n bsp; &nbs p; Fi nished 2nd in his second feature event<br> &n bsp; &nbs p; &n bsp; &nbs p; &n bsp; &nbs p; Be came youngest driver to win feature event<br> &n bsp; &nbs p; &n bsp; &nbs p; &n bsp; &nbs p; &n bsp; in a 410 sprint car. Record was previously<br> &n bsp; &nbs p; &n bsp; &nbs p; &n bsp; &nbs p; &n bsp; held by Jeff Gordon (14 Years Old).<br> &n bsp; &nbs p; &n bsp; &nbs p; &n bsp; &nbs p; Pa ragon Rookie of the year<br> &n bsp; &nbs p; &n bsp; &nbs p; &n bsp; &nbs p; HA RF First Year Driver<br> &n bsp; &nbs p; &n bsp; &nbs p; &n bsp; &nbs p; Ru nner-Up Sprints Division-Paragon Speedway<br> <br> <br> <b><big>2007</big></b> &n bsp; &nbs p; &n bsp; &nbs p; &n bsp; 10 races and 5 wins in a 600cc Micro Sprint<br> <br> <br> <b><big>2006</big></b> &n bsp; &nbs p; &n bsp; &nbs p; &n bsp; 14 Races and 5 wins in a 600cc Micro Sprint<br> <br> <br> <b><big>2002</big></b> &n bsp; &nbs p; &n bsp; &nbs p; &n bsp; 2 races and 1 win in a Quarter Midget<br> </p2> <p3> It messes with my browser. |
03-18-2009, 06:12 PM | #24 |
Ambassador of Quan
|
Re: Check it out....
Get a new browser lol...j/k. What's it doing to your browser?
Should have done it with tables, not sure why I did it this way. The " " is just spaces. |
03-18-2009, 06:17 PM | #25 |
Have My Own Room
|
Re: Check it out....
Nice job.
__________________
"The welfare of humanity is always the alibi of tyrants." Albert Camus Cool Cigar Themed Stuff |
03-18-2009, 07:39 PM | #26 |
Guest
Posts: n/a
|
Re: Check it out....
In SeaMonkey, "Career Highlights" overlaps the text above. In Konqueror, nothing shows below "Hobbies" except the footer.
|
03-18-2009, 08:07 PM | #27 | |
Guest
Posts: n/a
|
Re: Check it out....
Quote:
<div style="display:none;"> <img src="images/image1.jpg"><img src="images/image2.jpg">etc... </div> By putting it inside the <div>, the image will not display but will be loaded into the background. The makes the resource readily available. Also, it would of made formatting much easier to use tables or a CSS to align text. It's also a little more browser friendly. |
|
03-18-2009, 08:29 PM | #28 |
Ambassador of Quan
|
Re: Check it out....
can I just put
<div style = "display:none;"> </div> around the image and it will preload like what your talking about. Sorry for the questions, but it's been so long since I was using CSS |
03-18-2009, 08:51 PM | #29 |
Guest
Posts: n/a
|
Re: Check it out....
Sorry if that was a little complex. I've had that very problem in the past and that was one solution I've used. It's really not a big deal if it just takes a second to load.
I really think Lightbox is one of your better options for displaying the images. There are a few options out there. Some of the ones I know are a little more complex. Probably your best solution is a Windows app (unfortunately). If you can run Windows applications on your Mac, I would suggest checking out Visual Lightbox. I know the frustrations of Windows-only applications as a Linux user. If you need any other help let me know; I'll gladly do what I can to help you out. Even if you just need someone to test something. It's coming along nicely. Visual Lightbox: http://visuallightbox.com/ |
03-18-2009, 09:20 PM | #32 | |
Ambassador of Quan
|
Re: Check it out....
Quote:
width: 0px; height: 0px; display: inline; background-image: url(navhome.jpg); background-image: url(navchase.jpg); background-image: url(navnews.jpg); background-image: url(navschedule.jpg); background-image: url(navphotos.jpg); background-image: url(navsponsors.jpg); background-image: url(navshirts.jpg); background-image: url(navcontactus.jpg); } That's what I ended up doing to preload the rollover images. Seems to work pretty well. |
|
03-18-2009, 10:10 PM | #33 |
Guest
Posts: n/a
|
Re: Check it out....
Nice! That works.
|
03-19-2009, 07:22 AM | #35 |
Ambassador of Quan
|
Re: Check it out....
|
03-19-2009, 10:06 AM | #37 | |
I <3 Huy
|
Re: Check it out....
Quote:
__________________
I'm not antisocial, I just think people are stupid. |
|
03-19-2009, 10:42 AM | #39 |
Guest
Posts: n/a
|
Re: Check it out....
It's my font size conflicting with this code:
p { position: absolute; top: 350px; left: 275px; color: white; font-size: 13px; width: 300px;} p1 { position: absolute; top: 675px; left: 275px; color: white; font-size: 13px; width: 525px;} p2{position: absolute; top: 1200px; left: 275px; font-size: 13px; width: 525px; color: white;} p3{position: absolute; top: 1650px; left: 285px; color: white; size: 18px;} I have my fonts set bigger for my old eyes and it causes the absolute positioning to be wrong for my screen. I've seen this on a few other sites as well. Now I know what causes it. |