This is a discussion on "Website help..." within the Web Page Design section. This forum, and the thread "Website help... are both part of the Design Your Website category.
|
|
|
|
|
![]() |
||
Website help...
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
#1
|
|||
|
|||
|
Website help...
Ok, here is the website www.jtyransalonandspa.com/welcome.htm and here is the problem. The client wants it to look like this and no different, but I don't know enough about CSS yet to do positioning this way. Can anyone give me some tips on how I can use CSS instead of tables to create this site?
|
|
#2
|
|||
|
|||
|
Re: Website help...
Yes.
#0 Set up a container (with the full width of the site and place #1,#2,& #3 in it) #1 Set up the header image in a header divides (DIV) #2 Set up the menu in a unordered list (UL) #3 Set up the content in a content divides (DIV) When you have those three things ready it'll be easy for you to add the header image, add each menu item as a seperate List Item (LI), and then add the content in paragraphs (P). Styling from that point wont be too bad.
Last Blog Entry: Whats in a name? (Feb 20th, 2008)
|
|
#3
|
|||
|
|||
|
Re: Website help...
Thanks for the reply, I'm going to work on this. I'll repost if I have any questions or if I believe I got it right. Thanks.
|
|
#4
|
||||
|
||||
|
Re: Website help...
You might point out to your client what happens to that nice background pattern when you scroll.
|
|
#5
|
||||
|
||||
|
Re: Website help...
Quote:
__________________
Diego - Web-Developer & London SEO Expert jQuery Plugins: Multiple File Upload, Star Rating, FCKEditor | NEW: XML to JSON
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
|
|
#6
|
|||
|
|||
|
Re: Website help...
What happens to the background pattern? I've checked it on Opera, Firefox, Netscape, and IE6/7 and nothing happens for me on either of my 3 machines...
Are are you talking about having to see the ugly site? Because this is the last email she wrote me... Quote:
|
|
#7
|
||||
|
||||
|
Re: Website help...
Quote:
The background flickers.....
__________________
Diego - Web-Developer & London SEO Expert jQuery Plugins: Multiple File Upload, Star Rating, FCKEditor | NEW: XML to JSON
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
|
|
#8
|
|||
|
|||
|
Re: Website help...
Really? What causes that? I'm on Firefox now on my laptop and it does it there, but my other 3 pc's even with firefox I don't have this issue. Any ideas?
Also, how do I get the entire site to center with CSS? As far as I know there is no way to do this, I've been trying to do a margin % but with no luck. |
|
#9
|
||||
|
||||
|
Re: Website help...
Background flickers when you scroll....
To center in CSS: CSS:
__________________
Diego - Web-Developer & London SEO Expert jQuery Plugins: Multiple File Upload, Star Rating, FCKEditor | NEW: XML to JSON
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
|
|
#10
|
|||
|
|||
|
Re: Website help...
Where am I going wrong? I'm having problems making a horizontal Unordered list for my navigation... Here is the code:
Last edited by LearningToProgram; Jun 18th, 2006 at 03:09. |
|
#11
|
||||
|
||||
|
Re: Website help...
Size them so they fit?
|
|
#12
|
|||
|
|||
|
Re: Website help...
Hehehe, one of "Those" Clients...
I Recently had one, I did her a very tidy personal portfolio website and she decided she didnt want ANYTHING to have a border! This left bit and bobs lying all over the place! Definately not a peice of work ill be putting my name too! My advice for Your background would be to change it. Explain to the client what is happening and give her some more possibilities |
|
#13
|
|||
|
|||
|
Re: Website help...
Should also probably note that in IE 5.x margin:0 auto; doesn't work. So you need to text-align:center; your container and such. Just a thought since IE 5.x is still widely used unfortunately.
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
|
|
#14
|
|||
|
|||
|
Re: Website help...
If you are doing display:inline; no need for a float. If you do display:block; which is very common for horizontal nav lists then you would. This article will really help you out especially since you have rounded tabs. It will walk you through step by step on how to do it correctly. Cheers!
http://www.alistapart.com/articles/slidingdoors/ Quote:
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
|