Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
How can I design this?
Old 07-09-2007, 08:19 PM How can I design this?
Experienced Talker

Posts: 45
Name: Tonyo
Trades: 0
I'm redesigning the site that I recently did. Heres the link http://www.atriskstoriesofhope.com


I want to design the site to look like this below. Note: This is just a rough draft of the site that I want to go after.



I want to keep away from an all flash site. The only flash that I want is the one at the bottom.

1) Whats the best/simplest method to design this (css/etc?)

Also, I'm looking into possibly using adobe golive to position everything on the site.

Please offer any help that you can, as this is totally new to me.

Thanks

oh, and one last thing, I also want to position the site in the middle of a browser...
master_debator is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 07-09-2007, 09:38 PM Re: How can I design this?
Super Talker

Posts: 122
Name: Nate
Location: Orlando, FL
Trades: 0
Here's a great list of horizontal CSS Menus:

http://www.dynamicdrive.com/style/cs...y/category/C2/

and a CSS layout that fits your needs:

http://www.dynamicdrive.com/style/la...1-fixed-fixed/
NateL is offline
Reply With Quote
View Public Profile
 
Old 07-10-2007, 04:26 AM Re: How can I design this?
Experienced Talker

Posts: 45
Name: Tonyo
Trades: 0
Quote:
Originally Posted by NateL View Post
Here's a great list of horizontal CSS Menus:

http://www.dynamicdrive.com/style/cs...y/category/C2/

and a CSS layout that fits your needs:

http://www.dynamicdrive.com/style/la...1-fixed-fixed/
Thanks. You understand what I'm going after right? I want to position the buttons to hang over the left side...and to have my dads picture hang over the left side as well. How would this be done?


Check this site out http://workbench-music.com/. I want to do something like that (having my dads site centered in the middle of the page). How can this be done? (css/html???)

Thanks

Last edited by master_debator; 07-10-2007 at 04:45 AM..
master_debator is offline
Reply With Quote
View Public Profile
 
Old 07-10-2007, 07:00 AM Re: How can I design this?
Ninja's Avatar
Experienced Talker

Posts: 30
Trades: 0
Yes the positioning of the menu at the side, the pic on the left and the centering of the entire site can be done with CSS.
To center your site I believe setting body to
Code:
body{
     text-align:center;
}
should do it.
Ninja is offline
Reply With Quote
View Public Profile
 
Old 07-10-2007, 12:29 PM Re: How can I design this?
angele803's Avatar
Perfectly Imperfect

Posts: 1,772
Name: Stephanie
Location: Oklahoma
Trades: 2
The centering thing is easy. You can just create a container div to hold everything and define "margin: auto" in your stylesheet for the container.
The other part is more difficult. I believe you will have to use absolute positioning to get the buttons and picture to hang off of the edge of the main container. You may have to get into the z-index property to create layers.
angele803 is offline
Reply With Quote
View Public Profile
 
Old 07-10-2007, 02:18 PM Re: How can I design this?
Ninja's Avatar
Experienced Talker

Posts: 30
Trades: 0
What you can do is make a background-image pic for your container div where the left side of the background-image is the same color as the color of your document body.
It's best to do this as a repeating image on the y-axis so no matter the length of your container div the image will fill it. You can then position the container div as you wish for effect.
Ninja is offline
Reply With Quote
View Public Profile
 
Old 07-10-2007, 02:35 PM Re: How can I design this?
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
Quote:
I believe you will have to use absolute positioning to get the buttons and picture to hang off of the edge of the main container.
Not necessarily.

Given that the tabs for the menu are partially overlapping the left side, you can achieve that without absolute positioning and using floats.

The bottom section can be a separate div, with the background set as the bottom portion with the photo off to the side, but as shown above, still inside the container. You could then either put the message directly in that div, or even add another div inside it to contain and position the message/flash.

This example uses absolute positioning for the side tabs, but it is done that way because the tabs don't overlap the left column, they just meet it:
http://tinyurl.com/2fazqj
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 07-10-2007, 06:01 PM Re: How can I design this?
Experienced Talker

Posts: 45
Name: Tonyo
Trades: 0
Quote:
Originally Posted by angele803 View Post
The centering thing is easy. You can just create a container div to hold everything and define "margin: auto" in your stylesheet for the container.
The other part is more difficult. I believe you will have to use absolute positioning to get the buttons and picture to hang off of the edge of the main container. You may have to get into the z-index property to create layers.

Ok, I'm totally new to this. I recently got a copy of Adobe Golive as I've heard that you can edit a website/html/css with it quite easily. Right now, I need to create the website from scratch.

Can anyone give me a run down of how I should go about in the creation of a website that will resemble the picture that I posted? (and I mean a close to step by step if its at all possible)

Thanks
master_debator is offline
Reply With Quote
View Public Profile
 
Old 07-10-2007, 08:57 PM Re: How can I design this?
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
First you need to create the GRAPHIC MOCKUP of the site in some graphics program.

Once you have that, then you 'slice' the graphics into the pieces you need for header, footer, background, menu buttons, etc.

Lastly, and this may be the hard part for you, you set up the layout with the HTML and then do the CSS.

If you ask 10 people here, you're likely to get 10 different answers as we all tend to do things a bit differently.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 07-10-2007, 10:19 PM Re: How can I design this?
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
Ok, here is a very BASIC example - this is but one possible way to do this.

I used colors to illustrate the sections.
Attached Files
File Type: zip basicTabbed.zip (11.6 KB, 3 views)
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 10-01-2007, 09:37 PM Re: How can I design this?
Experienced Talker

Posts: 45
Name: Tonyo
Trades: 0
Quote:
Originally Posted by angele803 View Post
The centering thing is easy. You can just create a container div to hold everything and define "margin: auto" in your stylesheet for the container.
The other part is more difficult. I believe you will have to use absolute positioning to get the buttons and picture to hang off of the edge of the main container. You may have to get into the z-index property to create layers.
Can you explain how to do this. I'm redesigning my dads website, and I'm using div tags to position everything. Once I do this, can I create one big div tag and wrap this around every other tag.
master_debator is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to How can I design this?
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.68905 seconds with 13 queries