Website help...

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.



 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1  
Old Jun 16th, 2006, 22:43
Junior Member
Join Date: May 2006
Location: USA
Age: 23
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
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?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Jun 17th, 2006, 03:25
Reputable Member
Join Date: Jul 2005
Location: Indiana, USA
Age: 29
Posts: 153
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
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)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Jun 17th, 2006, 03:54
Junior Member
Join Date: May 2006
Location: USA
Age: 23
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old Jun 17th, 2006, 11:15
masonbarge's Avatar
Highly Reputable Member
Join Date: Jan 2006
Location: Atlanta GA
Posts: 631
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Website help...

You might point out to your client what happens to that nice background pattern when you scroll.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old Jun 17th, 2006, 11:26
spinal007's Avatar
Moderator
Join Date: Mar 2004
Location: Good Ol'London
Age: 23
Posts: 1,668
Blog Entries: 1
Thanks: 1
Thanked 4 Times in 4 Posts
Re: Website help...

Quote:
Originally Posted by masonbarge
You might point out to your client what happens to that nice background pattern when you scroll.
Makes me sick....
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old Jun 17th, 2006, 15:41
Junior Member
Join Date: May 2006
Location: USA
Age: 23
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
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:
Changes to Make:
1) Can you please change the homepage text to be in all Itallics with a black background and a lime green text.
2) I want the Contact page to have a red background with yellow text, and would like an animated picture of a mailbox opening and closing.
3) On the services page, I would like that background to be yellow instead of that blue.
As you can see, I won't be doing those changes... I'm already disguisted with the site, but I figure I might as well try and get it validated and use the coding as a reference... Just hope no one sees the site... lol
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old Jun 17th, 2006, 17:16
spinal007's Avatar
Moderator
Join Date: Mar 2004
Location: Good Ol'London
Age: 23
Posts: 1,668
Blog Entries: 1
Thanks: 1
Thanked 4 Times in 4 Posts
Re: Website help...

Quote:
Changes to Make:
1) Can you please change the homepage text to be in all Itallics with a black background and a lime green text.
2) I want the Contact page to have a red background with yellow text, and would like an animated picture of a mailbox opening and closing.
3) On the services page, I would like that background to be yellow instead of that blue.
That is the recipe for our "Worst Websites Archive"

The background flickers.....
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old Jun 17th, 2006, 18:11
Junior Member
Join Date: May 2006
Location: USA
Age: 23
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #9  
Old Jun 17th, 2006, 18:41
spinal007's Avatar
Moderator
Join Date: Mar 2004
Location: Good Ol'London
Age: 23
Posts: 1,668
Blog Entries: 1
Thanks: 1
Thanked 4 Times in 4 Posts
Re: Website help...

Background flickers when you scroll....

To center in CSS:

CSS:
Code: Select all
 
div.c{
 width:780px; /* or whatever width you want */
 margin:auto;
}
HTML:
Code: Select all
 
<body>
<div class="c">
 YOUR PAGE
</div>
</body>
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #10  
Old Jun 18th, 2006, 02:07
Junior Member
Join Date: May 2006
Location: USA
Age: 23
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Website help...

Where am I going wrong? I'm having problems making a horizontal Unordered list for my navigation... Here is the code:

Code: Select all
#menu li {display: inline; float: left;}
Code: Select all
    <div id="menu">
  <UL> 
    <li> <IMG SRC="http://www.webforumz.com/images/LTabSpace.png" WIDTH=43 HEIGHT=27 ALT=""></li>
    <li> <a href="welcome.htm"><IMG SRC="http://www.webforumz.com/images/WelcomeA.png" ALT="" WIDTH=111 HEIGHT=27 border="0"></a></li>
    <li> <a href="appointment.htm"><IMG SRC="http://www.webforumz.com/images/Appointment.png" ALT="" WIDTH=113 HEIGHT=27 border="0"></a></li>
    <li> <a href="employees.htm"><IMG SRC="http://www.webforumz.com/images/Employees.png" ALT="" WIDTH=113 HEIGHT=27 border="0"></a></li>
    <li> <a href="location.htm"><IMG SRC="http://www.webforumz.com/images/Location.png" ALT="" WIDTH=113 HEIGHT=27 border="0"></a></li>
    <li> <a href="services.htm"><IMG SRC="http://www.webforumz.com/images/Services.png" ALT="" WIDTH=113 HEIGHT=27 border="0"></a></li>
    <li> <a href="contact.htm"><IMG SRC="http://www.webforumz.com/images/ContactUs.png" ALT="" WIDTH=115 HEIGHT=27 border="0"></a></li>
    <li> <IMG SRC="http://www.webforumz.com/images/RTabSpace.png" WIDTH=39 HEIGHT=27 ALT=""></li>
  </UL>
    </div>
The problem is that the links aren't all going on one line, they are breaking into two... how do I fix this?

Last edited by LearningToProgram; Jun 18th, 2006 at 02:09.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #11  
Old Jun 18th, 2006, 14:12
masonbarge's Avatar
Highly Reputable Member
Join Date: Jan 2006
Location: Atlanta GA
Posts: 631
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Website help...

Size them so they fit?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #12  
Old Jun 24th, 2006, 08:57
Junior Member
Join Date: Nov 2005
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #13  
Old Jun 27th, 2006, 20:55
Elite Veteran
Join Date: Aug 2005
Location: That Place
Posts: 2,044
Blog Entries: 1
Thanks: 0
Thanked 37 Times in 37 Posts
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)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #14  
Old Jun 27th, 2006, 20:58
Elite Veteran
Join Date: Aug 2005
Location: That Place
Posts: 2,044
Blog Entries: 1
Thanks: 0
Thanked 37 Times in 37 Posts
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:
Originally Posted by LearningToProgram
Where am I going wrong? I'm having problems making a horizontal Unordered list for my navigation... Here is the code:

Code: Select all
#menu li {display: inline; float: left;}
Code: Select all
    <div id="menu">
  <UL> 
    <li> <IMG SRC="http://www.webforumz.com/images/LTabSpace.png" WIDTH=43 HEIGHT=27 ALT=""></li>
    <li> <a href="welcome.htm"><IMG SRC="http://www.webforumz.com/images/WelcomeA.png" ALT="" WIDTH=111 HEIGHT=27 border="0"></a></li>
    <li> <a href="appointment.htm"><IMG SRC="http://www.webforumz.com/images/Appointment.png" ALT="" WIDTH=113 HEIGHT=27 border="0"></a></li>
    <li> <a href="employees.htm"><IMG SRC="http://www.webforumz.com/images/Employees.png" ALT="" WIDTH=113 HEIGHT=27 border="0"></a></li>
    <li> <a href="location.htm"><IMG SRC="http://www.webforumz.com/images/Location.png" ALT="" WIDTH=113 HEIGHT=27 border="0"></a></li>
    <li> <a href="services.htm"><IMG SRC="http://www.webforumz.com/images/Services.png" ALT="" WIDTH=113 HEIGHT=27 border="0"></a></li>
    <li> <a href="contact.htm"><IMG SRC="http://www.webforumz.com/images/ContactUs.png" ALT="" WIDTH=115 HEIGHT=27 border="0"></a></li>
    <li> <IMG SRC="http://www.webforumz.com/images/RTabSpace.png" WIDTH=39 HEIGHT=27 ALT=""></li>
  </UL>
    </div>
The problem is that the links aren't all going on one line, they are breaking into two... how do I fix this?
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #15  
Old Jun 27th, 2006, 21:27
craig's Avatar
Reputable Member
Join Date: Sep 2005
Location: Preston, UK
Age: 21
Posts: 382
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Website help...

I hate picky clients... At the end of the day you don't tell them how to do their job, if they have chosen you , they obviously like your work, they should be able to trust you to come up with something half decent.
Explain to them, that in order for you to flourish you need space to work, let them give you something to work with. All of our clients so far (touch wood) have told us a brief and let us just do what we do. We have had nothing but praise.
What I am trying to say is, i'm sure you can impress them with something you create, or otherwise be a nice little pooch and do as your told

Craig
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #16  
Old Jun 28th, 2006, 12:46
Elite Veteran
Join Date: Aug 2005
Location: That Place
Posts: 2,044
Blog Entries: 1
Thanks: 0
Thanked 37 Times in 37 Posts
Re: Website help...

Clients like ugly, most of them have no idea what they really want and it is the designers job to come up with solutions based on very fragmented and minimal information. Fun stuff heh. At the same time that is why I enjoy doing work for others because I never have to like the final product, they do.

Quote:
Originally Posted by craig
I hate picky clients... At the end of the day you don't tell them how to do their job, if they have chosen you , they obviously like your work, they should be able to trust you to come up with something half decent.
Explain to them, that in order for you to flourish you need space to work, let them give you something to work with. All of our clients so far (touch wood) have told us a brief and let us just do what we do. We have had nothing but praise.
What I am trying to say is, i'm sure you can impress them with something you create, or otherwise be a nice little pooch and do as your told

Craig
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
website, help

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Website Developer needed to re-build our website. Immediate start! lysworld Job Opportunities 0 Mar 14th, 2008 08:59
Is it possible to parse data from a different website into my website? Phil Classic ASP 7 Jan 11th, 2008 23:18
Website developers’ website - pls comment art Free Web Site Critique 4 Sep 2nd, 2006 16:54


All times are GMT. The time now is 16:46.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved