Gamestudio Links
Zorro Links
Newest Posts
loading historical data 1st time
by AndrewAMD. 04/14/23 12:54
Trade at bar open
by juanex. 04/13/23 19:43
Bug in Highpass2 filter
by rki. 04/13/23 09:54
Adding Limit Orders For IB
by scatters. 04/11/23 16:16
FisherN
by rki. 04/11/23 08:38
AUM Magazine
Latest Screens
SHADOW (2014)
DEAD TASTE
Tactics of World War I
Hecknex World
Who's Online Now
4 registered members (fogman, Grant, AndrewAMD, juanex), 989 guests, and 8 spiders.
Key: Admin, Global Mod, Mod
Newest Members
rki, FranzIII, indonesiae, The_Judge, storrealba
18919 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
I need some CSS/HTML help #203041
04/19/08 02:36
04/19/08 02:36
Joined: Aug 2002
Posts: 2,692
California, USA
bupaje Offline OP
Expert
bupaje  Offline OP
Expert

Joined: Aug 2002
Posts: 2,692
California, USA
Well, now that I got laid off I have some time to work on my site but it's been too long and I forget stuff. Old guy brain.

http://www.stormvisions.com/newsite/splash.htm

The splash.htm has a one pixel or so gap below the image in Internet Explorer. Click on any link and you'll see the content.htm page. You can see the problem there. I want to put text content in the center and need that row of background images in the center to repeat-y. For some reason that right one is bulging.

I know there are image problems - I'll be redoing them. I used ImageReady to slice it and didn't realize I saved the image slices as gif so the color is a tiny bit different than the jpg and I have to do some other editing. Any help or other suggestions welcome.


Find me at: |Stormvisions| Twitter|
Re: I need some CSS/HTML help [Re: bupaje] #203082
04/19/08 12:09
04/19/08 12:09
Joined: Sep 2003
Posts: 9,859
F
FBL Offline
Senior Expert
FBL  Offline
Senior Expert
F

Joined: Sep 2003
Posts: 9,859
content.htm:

Your main table has a width of 940. You put 3 columns inside. Two of them have size of 80, the middle one is undefined. Inside this one, you put another table with width of 797.
Adding all those numbers you get 957 - 17 pixels too much, so your content does not fit into your main table.

1.) Adjust width values so they add up to the main table width
2.) Give all your columns (<td...>) a fixed width
3.) Try to avoid table in table - if you need margins for text, use CSS

additionally:
- Tables for layout are outdated, you might think of switching over to <div>s
- "background" property for table cells does not exist officially, although most browsers interpret it. Use CSS for background images instead.

Re: I need some CSS/HTML help [Re: FBL] #203111
04/19/08 16:21
04/19/08 16:21
Joined: Aug 2002
Posts: 2,692
California, USA
bupaje Offline OP
Expert
bupaje  Offline OP
Expert

Joined: Aug 2002
Posts: 2,692
California, USA
Ah THANKS! I am a bit outdated myself. Have to review q few things it seems. You saved me some brain cells. \:\)


Find me at: |Stormvisions| Twitter|
Re: I need some CSS/HTML help [Re: bupaje] #203178
04/20/08 07:47
04/20/08 07:47
Joined: Aug 2002
Posts: 2,692
California, USA
bupaje Offline OP
Expert
bupaje  Offline OP
Expert

Joined: Aug 2002
Posts: 2,692
California, USA
@Firoball

Well got he div's sorted out - still don't have the brain wrapped around completely. It is only a few tags but I spent hours banging my head and killing barin cells. Finally through trial and error got it sorted out. I still have to add interactivity, optimize and convert to a template for my cms. Thanks very much for your help.

http://www.stormvisions.com/newsite/content.htm


Find me at: |Stormvisions| Twitter|
Re: I need some CSS/HTML help [Re: bupaje] #203180
04/20/08 08:06
04/20/08 08:06
Joined: Jul 2002
Posts: 4,436
Germany, Luebeck
Xarthor Offline
Expert
Xarthor  Offline
Expert

Joined: Jul 2002
Posts: 4,436
Germany, Luebeck
Just a hint:
On line 55 you have <div width="940px" ...
This is no valid xhtml. If you go for valid xhtml change it to either:
<div style="width:940px" ...
Or setup another css object and use it as id for the div

Re: I need some CSS/HTML help [Re: Xarthor] #203218
04/20/08 14:00
04/20/08 14:00
Joined: Aug 2002
Posts: 2,692
California, USA
bupaje Offline OP
Expert
bupaje  Offline OP
Expert

Joined: Aug 2002
Posts: 2,692
California, USA
Oops, missed that - thanks. \:\)


Find me at: |Stormvisions| Twitter|

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1