User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the HTML and CSS section within the Web Development category of DaniWeb, a massive community of 423,083 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 4,339 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our HTML and CSS advertiser: Lunarpages Web Hosting
Views: 630 | Replies: 5
Reply
Join Date: Jun 2008
Posts: 15
Reputation: kyllle is an unknown quantity at this point 
Rep Power: 1
Solved Threads: 0
kyllle kyllle is offline Offline
Newbie Poster

Planning my htm & css design

  #1  
Jun 26th, 2008
Hi All,

Iv been working as a web content editor for a while now and understand html very well and the concept of css through having to edit countless amounts of webpages through my work, but, I have never actually built my own site using css and I feel its now time to make this step up to benefit myself and my job.

I have been provided with the oppoertunity to create a charity based site for my local walking club so I have drwan up a design on photoshop of how id like the homepage to look (please view attached jpg)

now I was wondering if you could help with my next stage, getting my head round whats involved in this design and how I should approach the coding.

Thanks for taking time to look, and all advice appreciated, also if you have any comments on the design or layout of my propossed site would be great thanks!!!
Attached Images
File Type: jpg layout.jpg (144.9 KB, 12 views)
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Jan 2007
Posts: 2,556
Reputation: MidiMagic is on a distinguished road 
Rep Power: 7
Solved Threads: 114
MidiMagic's Avatar
MidiMagic MidiMagic is offline Offline
Posting Maven

Re: Planning my htm & css design

  #2  
Jun 27th, 2008
I usually set up styles as I need them. And I design the big parts of the page first, and then add the little details.

And no lorem ipsum in the final product.
Last edited by MidiMagic : Jun 27th, 2008 at 9:42 pm.
Daylight-saving time uses more gasoline
Reply With Quote  
Join Date: Jun 2008
Posts: 15
Reputation: kyllle is an unknown quantity at this point 
Rep Power: 1
Solved Threads: 0
kyllle kyllle is offline Offline
Newbie Poster

Re: Planning my htm & css design

  #3  
Jul 4th, 2008
Hi all,

So Iv started the html/css production and have managed to get myself into a few problems that I just cant get my head round, ok so before you check the link I should highlight a few things that I know I havnt done correctly:

> Basically I have went with the background for the time being but it will def be changed to a gradient repeated across the page.

> I just cant get the text positioned to save my life!!! tried padding and resizing the widths but no joy??

> How do I go about altering the line space of the blockquote?

All advice welcomed and thanks for looking!!

link: http://www.glen-lodge.co.uk/quilly/quilly.html
Reply With Quote  
Join Date: Jul 2008
Location: Douglas, WY
Posts: 2
Reputation: jpusdafs is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
jpusdafs's Avatar
jpusdafs jpusdafs is offline Offline
Newbie Poster

Re: Planning my htm & css design

  #4  
Jul 5th, 2008
Originally Posted by kyllle View Post
Hi all,

So Iv started the html/css production and have managed to get myself into a few problems that I just cant get my head round, ok so before you check the link I should highlight a few things that I know I havnt done correctly:

> Basically I have went with the background for the time being but it will def be changed to a gradient repeated across the page.

> I just cant get the text positioned to save my life!!! tried padding and resizing the widths but no joy??

> How do I go about altering the line space of the blockquote?

All advice welcomed and thanks for looking!!

link: http://www.glen-lodge.co.uk/quilly/quilly.html


you should consider using em or percentages for sizing your text. you can also try adjusting your margins instead of padding... this might help. by using em (i.e. font-size:0.9em or percentages (i.e. font-size:90% will allow your text to flow more smoothly, and allow your site to be more flexible.

hope this helps.

/jp/
Reply With Quote  
Join Date: Jul 2008
Posts: 2
Reputation: ctrl4ltdeleteme is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
ctrl4ltdeleteme ctrl4ltdeleteme is offline Offline
Newbie Poster

Re: Planning my htm & css design

  #5  
Jul 9th, 2008
Hey,
Let me preface my statements by saying that I really like the design, and that design is not my forté.


Ok, Your background image ,"repeat.jpg", should probably be 1px width. The reason being is that if you are using repeat-x for any reason, it is so that you can save bandwidth. If you reduce the size of the image-width then the page should load faster.

Also, don't name it repeat.jpg name it something that has more semantic value like xxxxx_bkg.jpg. The reason for this is that you are bound to end up with something else that is repeating and you don't want to end up in a situation where your choosing between editing repeat1, or repeat2 and have no idea whether you are editing the page background or a div background. The name should tell you something about where it goes and what it does.

Put all of your styles in a separate file. If you have five pages for your site(home, meetings, faqs, contacts,links, and something else) you don't want to be in a situation where you need to make a global change and have to edit every file you have(this would also be a good time for me to mention php includes but that's not exactly web design). You can use this
		<link href="/css/main.css" rel="stylesheet" type="text/css" />
in each document to create a link to one static stylesheet, this will allow you to make global changes to your page. Here is a stylesheet from a site that I designed.
http://swingknights.org/css/main.css
I'm not really proud of the design of the site, but as time went on I tried to keep a certain structure for the style sheet.....an even better one would be
http://techrangers.cdws.ucf.edu/_ass...cket_Style.css

Also, I don't know what you are using to develop the page, but when I started making pages for the internetz I got a firefox addon called webdeveloper. There is an option called "outline block level elements" which is very helpful in finding spacing errors.

Also, just a thought, if your server allows for php you should utilize it, if not that's sort of a bummer....

I hope that helps and good luck with the site.


-Austin
Last edited by ctrl4ltdeleteme : Jul 9th, 2008 at 10:16 pm. Reason: I am an idiot and didnt spellcheck :D
Reply With Quote  
Join Date: Jan 2007
Posts: 2,556
Reputation: MidiMagic is on a distinguished road 
Rep Power: 7
Solved Threads: 114
MidiMagic's Avatar
MidiMagic MidiMagic is offline Offline
Posting Maven

Re: Planning my htm & css design

  #6  
Jul 10th, 2008
Blockquote is scheduled to be deprecated, so don't use it in new designs.
Daylight-saving time uses more gasoline
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

DaniWeb HTML and CSS Marketplace
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

Thread Tools Display Modes

Other Threads in the HTML and CSS Forum

All times are GMT -4. The time now is 5:42 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC