nc7r Posted February 23, 2008 Report Share Posted February 23, 2008 Posting up what you need help with would give us an idea.. Quote Link to comment Share on other sites More sharing options...
Adam-Griffin Posted February 23, 2008 Report Share Posted February 23, 2008 Speak to this gentleman Quote Link to comment Share on other sites More sharing options...
nc7r Posted February 25, 2008 Author Report Share Posted February 25, 2008 Well, basically the guy who I have doing the website won't be able to work on it for a few days. So i'd like one or two sections of text adding, and a few images.I don't have a programme to do this though.You paying this person yea?What website? Quote Link to comment Share on other sites More sharing options...
Muel Posted February 25, 2008 Report Share Posted February 25, 2008 I do a lot of really basic stuff, kinda like what your wanting!This is a website I am working on now, I'm rushing to get the content in so it's arranged in a pretty crappy way.Click the pics, it's got some fancy thing that only works if you have java.http://sam.nicnoble.co.uk/muel.htm Quote Link to comment Share on other sites More sharing options...
JonMack Posted February 25, 2008 Report Share Posted February 25, 2008 (edited) I do a lot of really basic stuff, kinda like what your wanting!This is a website I am working on now, I'm rushing to get the content in so it's arranged in a pretty crappy way.Click the pics, it's got some fancy thing that only works if you have java.http://sam.nicnoble.co.uk/muel.htmIt's javascript! I've told you before, Java and Javascript are two COMPLETELY different things, and your ligthbox or thickbox or whatever gallery it is ISN'T something new and un-heard of. Do you really think Tarty would use it if it was some piece of high tech software which only worked on a few websites? They're very common scripts!I design websites, you can see the last one i did athttp://www.jonmack.co.uk/TDYC/EDIT: Knowing you've put Java not Javascript is actually annoying me, hurry up and act upon your foolish web design lingo error. Edited February 25, 2008 by JonMack Quote Link to comment Share on other sites More sharing options...
spode@thinkbikes Posted February 25, 2008 Report Share Posted February 25, 2008 I do a lot of really basic stuff, kinda like what your wanting!This is a website I am working on now, I'm rushing to get the content in so it's arranged in a pretty crappy way.Click the pics, it's got some fancy thing that only works if you have java.http://sam.nicnoble.co.uk/muel.htmWhy are you using tables for layout? Why are you using font tags isntead of just adding into your stylesheet at the top of the document? Quote Link to comment Share on other sites More sharing options...
Revolver Posted February 25, 2008 Report Share Posted February 25, 2008 I do a lot of really basic stuff, kinda like what your wanting!This is a website I am working on now, I'm rushing to get the content in so it's arranged in a pretty crappy way.Click the pics, it's got some fancy thing that only works if you have java.http://sam.nicnoble.co.uk/muel.htmWhy are you using tables for layout? Why are you using font tags isntead of just adding into your stylesheet at the top of the document?he's got a point you know, using CSS saves a lot of time with adding format codes that i think are now obsolete. Get dreamweaver, it makes web design and particularly CSS a walk in the park Quote Link to comment Share on other sites More sharing options...
Muel Posted February 25, 2008 Report Share Posted February 25, 2008 (edited) Why are you using tables for layout? Why are you using font tags isntead of just adding into your stylesheet at the top of the document?I don't know how. :$ I would have done if I knew how to, but I am pretty shit at web design, and I have never used a seperate stylesheet, I just stick a few bit's in at the top.<style type="text/css"> a {text-decoration: none; color:#FFFFFF; } a:hover {color: white; text-decoration: underline;} body {margin: 0; padding: 0;} html {margin: 0; padding: 0;} background {background-repeat: no-repeat;}</style>I don't know what they do really, I just searched for certain things in google and wacked them in there.EDIT: What can you use instead of tables? Edited February 25, 2008 by El Muelio Quote Link to comment Share on other sites More sharing options...
tomturd Posted February 25, 2008 Report Share Posted February 25, 2008 EDIT: What can you use instead of tables?CSS.You should only use tables for tabular data, eg a price list or something - not layout. Quote Link to comment Share on other sites More sharing options...
spode@thinkbikes Posted February 25, 2008 Report Share Posted February 25, 2008 Have a Google for designing layouts in CSS. You essentially create "blocks" and give them sizes and positions. A lot more flexible than using tables, and a lot more consistent in rendering. Quote Link to comment Share on other sites More sharing options...
Revolver Posted February 25, 2008 Report Share Posted February 25, 2008 css and marmitego to w3schools and read about CSS there until you know what it's about, then get dreamweaver and play with the format.CSS has something that lets you position every item enclosed in div elements, i used it in my assignment at college, so you don't need tables, which are also obsolete. Quote Link to comment Share on other sites More sharing options...
JonMack Posted February 25, 2008 Report Share Posted February 25, 2008 http://www.jonmack.co.uk/TDYC/A CSS based site. Quote Link to comment Share on other sites More sharing options...
Simon Posted February 25, 2008 Report Share Posted February 25, 2008 The ideal is that XHTML deals with the content, CSS with the presentation, and JavaScript with the behaviour.Best example for HTML working with CSS is http://www.csszengarden.co.uk/. Quote Link to comment Share on other sites More sharing options...
MadManMike Posted February 25, 2008 Report Share Posted February 25, 2008 Best example for HTML working with CSS is http://www.csszengarden.co.uk/.It might be great code but it's not a visually pleasing website for me - looks like a tidy Word document! Quote Link to comment Share on other sites More sharing options...
Simon Posted February 25, 2008 Report Share Posted February 25, 2008 It might be great code but it's not a visually pleasing website for me - looks like a tidy Word document!Er, there is like 200+ designs for that site, check the right hand navigation and browse some of them. It's the idea of CSS Zen Garden, that one site can look visually completely different a hundred times over only through changing the CSS. http://www.mezzoblue.com/zengarden/alldesigns/ Quote Link to comment Share on other sites More sharing options...
tomturd Posted February 25, 2008 Report Share Posted February 25, 2008 Er, there is like 200+ designs for that site, check the right hand navigation and browse some of them. It's the idea of CSS Zen Garden, that one site can look visually completely different a hundred times over only through changing the CSS. http://www.mezzoblue.com/zengarden/alldesigns/And most importantly the HTML remains unchanged. Really good site, haven't looked at it for years, will have a browse now. Quote Link to comment Share on other sites More sharing options...
MadManMike Posted February 25, 2008 Report Share Posted February 25, 2008 Er, there is like 200+ designs for that site, check the right hand navigation and browse some of them. It's the idea of CSS Zen Garden, that one site can look visually completely different a hundred times over only through changing the CSS. http://www.mezzoblue.com/zengarden/alldesigns/Ah right, I clicked, saw it looked ugly and left it Fair play in that case! Quote Link to comment Share on other sites More sharing options...
spode@thinkbikes Posted February 25, 2008 Report Share Posted February 25, 2008 And most importantly the HTML remains unchanged. Really good site, haven't looked at it for years, will have a browse now.Indeed. Makes coding a lot easier, as the design and code are entirely separate. So no <BR> tags and the like Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.