You are viewing our Forum Archives. To view or take place in current topics click here.
Website Help?? (+rep)
Posted:

Website Help?? (+rep)Posted:

Status: Offline
Joined: Dec 04, 201014Year Member
Posts: 605
Reputation Power: 23
Status: Offline
Joined: Dec 04, 201014Year Member
Posts: 605
Reputation Power: 23
I am working on making a website and it has been awhile since i have coded on dreamweaver and am not the best with design. What is the best way that I could make a site like this?
[ Register or Signin to view external links. ]

I am stuck with making the background work the way i want. I just want the background with the design and the nav bar can be added on later. and the white box i play to add an image slide show. Any help please??
#2. Posted:
noizzy
  • New Member
Status: Offline
Joined: Jan 21, 201410Year Member
Posts: 8
Reputation Power: 0
Status: Offline
Joined: Jan 21, 201410Year Member
Posts: 8
Reputation Power: 0
Tables are usually the way structure is done, that or divs. With tables you would make one centered table with each part being a table row and the menu containing however many columns you want, or simply just putting it all into one row. As for the graphics you would have to cut them up into individual images on top of a main background image
#3. Posted:
MLP
  • TTG Contender
Status: Offline
Joined: Oct 26, 201014Year Member
Posts: 3,869
Reputation Power: 177
Status: Offline
Joined: Oct 26, 201014Year Member
Posts: 3,869
Reputation Power: 177
noizzy wrote Tables are usually the way structure is done, that or divs. With tables you would make one centered table with each part being a table row and the menu containing however many columns you want, or simply just putting it all into one row. As for the graphics you would have to cut them up into individual images on top of a main background image


Using tables for a layout is a novice's idea, and should really never be done.

Back on topic, get a small portion of the background so you can repeat it like this:

CSS
body {
  background: url('{PATH TO IMAGE}') top left repeat;
}


That will repeat a background across your site.

Here is a great resource to learn basic HTML and CSS if you need future help for simple problems.

[ Register or Signin to view external links. ]
#4. Posted:
var
  • TTG Senior
Status: Offline
Joined: Dec 24, 201211Year Member
Posts: 1,498
Reputation Power: 79
Status: Offline
Joined: Dec 24, 201211Year Member
Posts: 1,498
Reputation Power: 79
This could be done easily with css3 gradients, some border radius and your normal CSS for styling navigation. You can find all those on w3schools..
#5. Posted:
Hacz
  • Christmas!
Status: Offline
Joined: Mar 04, 201014Year Member
Posts: 2,891
Reputation Power: 150
Status: Offline
Joined: Mar 04, 201014Year Member
Posts: 2,891
Reputation Power: 150
MLP wrote Here is a great resource to learn basic HTML and CSS if you need future help for simple problems.

[ Register or Signin to view external links. ]


I would avoid w3schools considering that they teach you bad habits. OP: Find books or a reputable tutorial if you are looking for good HTML/CSS tutorials. NOT w3schools or a little kid on YouTube.

OT: You said make the background the way you want. Please elaborate on how you would like it.
#6. Posted:
Status: Offline
Joined: Dec 04, 201014Year Member
Posts: 605
Reputation Power: 23
Status: Offline
Joined: Dec 04, 201014Year Member
Posts: 605
Reputation Power: 23
HawkTheNerd wrote
MLP wrote Here is a great resource to learn basic HTML and CSS if you need future help for simple problems.

[ Register or Signin to view external links. ]


I would avoid w3schools considering that they teach you bad habits. OP: Find books or a reputable tutorial if you are looking for good HTML/CSS tutorials. NOT w3schools or a little kid on YouTube.

OT: You said make the background the way you want. Please elaborate on how you would like it.


I want to make a make the background than add things on top like the nav bar and photo slider where the white in the picture is.
#7. Posted:
-Pawn
  • TTG Addict
Status: Offline
Joined: Jan 15, 201113Year Member
Posts: 2,316
Reputation Power: 119
Status: Offline
Joined: Jan 15, 201113Year Member
Posts: 2,316
Reputation Power: 119
Tables would look good. Also you could do a div tag design, but those can become rather messy.
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.