Today's Posts Follow Us On Twitter! TFL Members on Twitter  
Forum search: Advanced Search  
Navigation
Marketplace
  Members Login:
Lost password?
  Forum Statistics:
Forum Members: 24,254
Total Threads: 80,792
Total Posts: 566,472
There are 1615 users currently browsing (tf).
 
  Our Partners:
 
  TalkFreelance     Design and Development     HTML/XHTML/DHTML/CSS :

Some friendly word of advise?

Thread title: Some friendly word of advise?
Closed Thread    
    Thread tools Search this thread Display Modes  
03-27-2007, 01:48 PM
#1
Sulcalibur is offline Sulcalibur
Sulcalibur's Avatar
Status: I love this place
Join date: Jan 2005
Location: London
Expertise:
Software:
 
Posts: 608
iTrader: 4 / 100%
 

Sulcalibur is on a distinguished road

Send a message via MSN to Sulcalibur

  Old  Some friendly word of advise?

I know this is going to be crap and filled with errors but I thought I'd just post up how far I've got with my site design.

Please take into account I've just started coding as I usually pay someone else to do it and concentrate on the design side so please be kind when telling me how I'm getting along

http://77pixels.com/temp/

Alot of stuff still needs sorting and styled but you'll get the idea. Also how do I set the footer to stay at the bottom?

03-27-2007, 02:26 PM
#2
daz is offline daz
Status: I love this place
Join date: Jun 2005
Location: UK
Expertise:
Software:
 
Posts: 562
iTrader: 5 / 100%
 

daz is on a distinguished road

Send a message via MSN to daz

  Old

Using a lot of bad coding techniques. Code doesn't validate. The main problem is your use of images. The white background and border can be achieved through css. No need to use images. No need to use
Code:
position: relative;
on every element. Also using techniques like
Code:
 top: -300px;
is bad coding and there is usually a better way to achieve what you want to do. CSS could be optimized a lot aswell. For example you use
Code:
 	background-image: url(img/bottom_wood.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
which should be
Code:
background: url("img/bottom_wood.jpg") no-repeat bottom;
Hope that helps you.

(Navigation is off in IE6)

03-27-2007, 02:30 PM
#3
Andrew R is offline Andrew R
Status: Request a custom title
Join date: Dec 2005
Location: Arizona
Expertise:
Software:
 
Posts: 5,200
iTrader: 17 / 95%
 

Andrew R is on a distinguished road

  Old

daz pretty much hit the mark. Just take a look at some "professional" coders and coding jobs, and look at how they do certain stuff.

03-27-2007, 02:53 PM
#4
jared is offline jared
jared's Avatar
Status: Member
Join date: Sep 2005
Location: Victoria, TX
Expertise:
Software:
 
Posts: 172
iTrader: 0 / 0%
 

jared is on a distinguished road

Send a message via AIM to jared Send a message via Skype™ to jared

  Old

I agree, you have a lot of weird coding going on there. In FF 2.0 the links at the top are not clickable...

03-27-2007, 03:01 PM
#5
Sulcalibur is offline Sulcalibur
Sulcalibur's Avatar
Status: I love this place
Join date: Jan 2005
Location: London
Expertise:
Software:
 
Posts: 608
iTrader: 4 / 100%
 

Sulcalibur is on a distinguished road

Send a message via MSN to Sulcalibur

  Old

ahhh crap, oh well gotta live and learn I guess. I'm determined to get this right, so I gotta roll with the punches :P

03-27-2007, 03:02 PM
#6
Sulcalibur is offline Sulcalibur
Sulcalibur's Avatar
Status: I love this place
Join date: Jan 2005
Location: London
Expertise:
Software:
 
Posts: 608
iTrader: 4 / 100%
 

Sulcalibur is on a distinguished road

Send a message via MSN to Sulcalibur

  Old

Originally Posted by Andrew R View Post
daz pretty much hit the mark. Just take a look at some "professional" coders and coding jobs, and look at how they do certain stuff.
I have been but when you haven't a clue it's not easy. I mean I can do plenty with photoshop but someone looking at an image may not know how or why to get those results. (if that made sense)

03-27-2007, 03:04 PM
#7
Sulcalibur is offline Sulcalibur
Sulcalibur's Avatar
Status: I love this place
Join date: Jan 2005
Location: London
Expertise:
Software:
 
Posts: 608
iTrader: 4 / 100%
 

Sulcalibur is on a distinguished road

Send a message via MSN to Sulcalibur

  Old

Originally Posted by daz View Post
Using a lot of bad coding techniques. Code doesn't validate. The main problem is your use of images. The white background and border can be achieved through css. No need to use images. No need to use
Code:
position: relative;
on every element. Also using techniques like
Code:
 top: -300px;
is bad coding and there is usually a better way to achieve what you want to do.
I have no idea how to get the right result though?


Originally Posted by daz View Post
CSS could be optimized a lot aswell. For example you use
Code:
 	background-image: url(img/bottom_wood.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
which should be
Code:
background: url("img/bottom_wood.jpg") no-repeat bottom;
This though is good advise, thank you!

03-27-2007, 03:14 PM
#8
daz is offline daz
Status: I love this place
Join date: Jun 2005
Location: UK
Expertise:
Software:
 
Posts: 562
iTrader: 5 / 100%
 

daz is on a distinguished road

Send a message via MSN to daz

  Old


I have no idea how to get the right result though?
Learn from example. Like Andrew said, look at professional css coding and see how they achieve their results. You'll find they don't use any position: absolute; or top: -whatever; in their code.

03-27-2007, 03:52 PM
#9
jabberwocky is offline jabberwocky
jabberwocky's Avatar
Status: Member
Join date: Oct 2005
Location: Calgary, Alberta, Canada
Expertise:
Software:
 
Posts: 278
iTrader: 0 / 0%
 

jabberwocky is on a distinguished road

  Old

i think you are off to a pretty good start though. keep at it and it will come to you. and if you have questions, post em, or google them.

03-27-2007, 03:54 PM
#10
Sulcalibur is offline Sulcalibur
Sulcalibur's Avatar
Status: I love this place
Join date: Jan 2005
Location: London
Expertise:
Software:
 
Posts: 608
iTrader: 4 / 100%
 

Sulcalibur is on a distinguished road

Send a message via MSN to Sulcalibur

  Old

Originally Posted by jabberwocky View Post
i think you are off to a pretty good start though. keep at it and it will come to you. and if you have questions, post em, or google them.
Cheers even as a 30 year old support is needed.

I really have to stick with this because I can't be bothered to keep paying people to do the coding and also it makes for better designs.

Closed Thread    


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

  Posting Rules  
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump:
 
  Contains New Posts Forum Contains New Posts   Contains No New Posts Forum Contains No New Posts   A Closed Forum Forum is Closed