Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Mar 29th, 2006, 8:03 AM   #1
nnxion
Programming Guru
 
nnxion's Avatar
 
Join Date: Jun 2005
Location: elemental plane
Posts: 1,429
Rep Power: 5 nnxion is on a distinguished road
my new site www.rubenisme.com

What do you think of it (link)?

I think it's still very bad, but my webdesign skills suck, I have tried so many times, I just don't have that talent. So at least I tried my best and this is what came out.
__________________
"Employ your time in improving yourself by other men's writings, so that you shall gain easily what others have labored hard for."
-- Socrates
nnxion is offline   Reply With Quote
Old Mar 29th, 2006, 8:08 AM   #2
Infinite Recursion
Programming Guru
 
Infinite Recursion's Avatar
 
Join Date: Jul 2004
Location: United States
Posts: 3,467
Rep Power: 8 Infinite Recursion is on a distinguished road
Send a message via MSN to Infinite Recursion Send a message via Yahoo to Infinite Recursion
It looks pretty good man... the layout is the same I am using for my new site... but the footer is a little shorter in height and the spacing and borders is a bit different.

Maybe you can try to throw in a few more colors and a different font... to make it a bit more "visually appealing". You may also get hammered for using a table instead of DIV. I used a table in my current site, but switching to CSS div in the new one.
__________________
http://jasonpowers.net

"There are a thousand hacking at the branches of evil to one who is striking at the root."
Infinite Recursion is offline   Reply With Quote
Old Mar 29th, 2006, 8:11 AM   #3
java_roshan
Professional Programmer
 
Join Date: Mar 2005
Location: Student of University of Mumbai, Maharashtra State, India
Posts: 344
Rep Power: 4 java_roshan is on a distinguished road
its simple and straight. You might think of applying some CSS to it and may be some simple graphics for the navigational menu. Possibly, design a good banner of 468 x 60 or some other dimension.

I think, it isn't bad, but appears incomplete
Just my thought!
java_roshan is offline   Reply With Quote
Old Mar 29th, 2006, 8:28 AM   #4
nnxion
Programming Guru
 
nnxion's Avatar
 
Join Date: Jun 2005
Location: elemental plane
Posts: 1,429
Rep Power: 5 nnxion is on a distinguished road
Quote:
Originally Posted by Infinite Recursion
It looks pretty good man... the layout is the same I am using for my new site... but the footer is a little shorter in height and the spacing and borders is a bit different.

Maybe you can try to throw in a few more colors and a different font... to make it a bit more "visually appealing". You may also get hammered for using a table instead of DIV. I used a table in my current site, but switching to CSS div in the new one.
Thanks, yeah colors would be nice if only I could choose the right ones..
I like the Joomla site, I also want to post some source code in my log so maybe I should put wordpress or something on my site.

Quote:
Originally Posted by java_roshan
its simple and straight. You might think of applying some CSS to it and may be some simple graphics for the navigational menu. Possibly, design a good banner of 468 x 60 or some other dimension.

I think, it isn't bad, but appears incomplete
Just my thought!
Thank you, yes a banner would be nice, I have a friend that can make those, I'll ask him soon.
__________________
"Employ your time in improving yourself by other men's writings, so that you shall gain easily what others have labored hard for."
-- Socrates
nnxion is offline   Reply With Quote
Old Mar 29th, 2006, 9:10 AM   #5
DaWei
Resident Grouch
 
DaWei's Avatar
 
Join Date: Jun 2005
Posts: 6,453
Rep Power: 10 DaWei is on a distinguished road
Ruben, material to be read should exhibit contrast. You don't have quite enough. Personal opinion, of course. The use of tables for layout is not a sin; it's a flag of amateurism or lack of skill (like not testing functions for success or not indenting code), which you admit to, anyway. As with anything else, improvement comes only from study and practice. I'd guess the majority of us don't have an inborn talent for slick presentation; I know I don't.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code.
Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers
DaWei is offline   Reply With Quote
Old Mar 29th, 2006, 9:16 AM   #6
zorin
Hobbyist Programmer
 
Join Date: Apr 2005
Posts: 218
Rep Power: 4 zorin is on a distinguished road
First off nnixon nice website. You could think of adding some graphics in the background or somthing, websites that have text over a graphic look more eye-catching. The text could be done with changing it a little bit, maybe changing the title so it looks professional and stands out to the reader.

The word press idea is good, ive seen websites with it and they look much better. Just my thoughts.
zorin is offline   Reply With Quote
Old Mar 29th, 2006, 9:57 AM   #7
java_roshan
Professional Programmer
 
Join Date: Mar 2005
Location: Student of University of Mumbai, Maharashtra State, India
Posts: 344
Rep Power: 4 java_roshan is on a distinguished road
Quote:
Originally Posted by DaWei
The use of tables for layout is not a sin; it's a flag of amateurism or lack of skill (like not testing functions for success or not indenting code),
Use of tables is not liked or treated as non-professional anymore?

Isn't it true that most websites shifted from frames to tables over a number of years for page layouts?

If the trend and professional attributes are different, could you please tell me more about that?
__________________
Visit: http://www.somaiya.edu
java_roshan is offline   Reply With Quote
Old Mar 29th, 2006, 10:12 AM   #8
MrMan9879
Programmer
 
MrMan9879's Avatar
 
Join Date: Sep 2005
Location: Nanaimo, BC, Canada
Posts: 97
Rep Power: 0 MrMan9879 is an unknown quantity at this point
Send a message via MSN to MrMan9879
I'm pretty sure they don't mean that they want frames over tables. They just think that tables are insignificent compared to DIVs. I actually don't know why either though... could someone explain to me why tables are such a bad thing?
MrMan9879 is offline   Reply With Quote
Old Mar 29th, 2006, 12:16 PM   #9
DaWei
Resident Grouch
 
DaWei's Avatar
 
Join Date: Jun 2005
Posts: 6,453
Rep Power: 10 DaWei is on a distinguished road
Tables are for tabular material (surprise, surprise!). Layout should be done using CSS. If you ever saw the HTML for an old site where things were tightly controlled using tables and spacers, you'd brown your pants. In those days there was no real alternative. CSS changes all that; one should move forward with technology. Admittedly, there's a lot to keep up with -- one has to priortize. However, if I can't keep substantially up, I won't accept the job. A client has the right to the best he can get for the bucks spent.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code.
Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers
DaWei is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

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

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
Forum Jump




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 7:28 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC