problem
- Started
- Last post
- 28 Responses
- method_c
im making this demo site:
http://www.leox.com/sneak/easyco…
as u can see there are still some lines missing in the interface, right between the 2 frames. I made a mistake making the interface and now I dont know how to get these lines over there.
any suggestions/solutions ?
- jaybee0
with flash?
- method_c0
no flash
- jaybee0
well, whatt program have you used then?
- unknown0
Probably something to do with your tables
- method_c0
I used DW, and yes it has something to do with my tables.. the only thing I need is a solution for the problem... coz i can't get it fixed :(
- Nairn0
As far as HTML's concerned: If in doubt, start again.
You'll waste more time trying to fix duff code than just rebuilding it up again. It might be a good idea to work out how to handcode this too - you should have a deep understanding of things as fundamental as tables, Don't rely on DW.
- unknown0
have you looked at that site on a mac? No you haven't - its all over the place, you need to think again about your tables and how your slicing up things... I'd just use corners and 1x1px spacers to create those boxes if I were you rather than these big slices.
- method_c0
fuck
- jg_20
is not question of fucking is question of ---> patience + learning.
take it easy fella!
- jaybee0
jg_2, i agree;
don't worry method_c, it happens many times; get your head stuck in, and if it's all html you'll have to start all over again.
- method_c0
Trying to make some sense of it all, but I can see that it makes no sense at all.
.... started all over again, thx guys
- kodap0
write align=left within the iframe tag. i think the iframe is responsible for that mess.
- method_c0
which one ?
- method_c0
well I left the whole starting over project and looked to the old site again. I managed to get a td between the 2 frames :
as i did this the pics on the right side jumped further to the right.
It was all over the place now I did what u said Kodap; I aligned the content frame to the left and the site wasnt all over the place any longer. but now it aint scrolling anymore :s
- ********0
why not use absolute positioning for each and every element via CSS?
and even better: write in XHTML..
- method_c0
I can't
If you can
Show me
Teach me
- ********0
well if you have the time, toy with it... DW's CSS control is (for the basics at least) very easy to use..
you can use the lines as bg images and drop them into css controlled boxes..
see Stylesheet properties window in DW, and you better make an external stylesheet (separate document) as you have to change only one document to change the whole site layout or errors you might find.
use div's and give them an identity:
for instance:
[div id="masthead"]your content for the masthead[/div]
then call the element with CSS:
#masthead {
width: 500px;
height: 120px;
position: absolute;
top: 10px;
left: 20px;
}etc.
etc.do a search for CSS in PV-AN and you will find lots!!
also Chris Lea has linked some CSS resources in the NTB.
goodluck.
- ********0
and ofcourse i used [ ]
instead of brackets, cause PV-AN doesn't like
:)

