Critisicm please!

  • Thread starter Cobraboy
  • 21 comments
  • 765 views
Navigation bar, you mean the menu? Good, good, thats one area I wasnt too keen on. Do you mean the font on the navbar or the content?
 
Yes, the menu is great. I love the "hover" buttons.

No, I think the BODY text should change. Times New Roman is boring and doesn't look good to the eye. Make it all Verdana.
 
Originally posted by TAFJonathan
Yes, the menu is great. I love the "hover" buttons.

No, I think the BODY text should change. Times New Roman is boring and doesn't look good to the eye. Make it all Verdana.

Agreed. And maybe the text is a tad bit too close to the left edge of the cell. Give it a little padding and change the font and you're good.
 
Originally posted by milefile
And maybe the text is a tad bit too close to the left edge of the cell. Give it a little padding and change the font and you're good.

Thanks, I didn't know how to fix that 👍

The Links page: http://www.freewebs.com/kiwitrax2/links.html has spacing underneath the buttons on the left panel. Not sure why, but maybe you're doing a line break ...<br>... after each image. The other pages look fine.

No, thats because the image of the big blue space (below the links tab) has only 1 img in it. The more content that I put in that page, the longer the page gets. So the images stretch down to accomodate it. The only way I know of fixing it is by putting another big blue space image in.
 
Originally posted by milefile
Give it a little padding

I just did that and this is what I got, spaces in between the layour images. What should I do?, set the background to the colour of the layout images??
 
Forgot the image...

[edit]dammit didn't work, crappy screenshot taker. Oh, and how exactly do I go about changing the entire sites font? I havent done html in ages I can't remember.
 
Ya know... you 've got some stuff goin' on there that I'm not familiar with. One of my sites has pretty much the same layout but I did some things differently. Like... I put my javascript mousover table on top. I think that might have something to do with why when you added padding you got what you got. And I really can't figure it out without playing around with it. Maybe someone who knows better than me can see what's going on just by looking at it. Sorry.

How did you write this? Longhand? Am editor?
 
Originally posted by Cobraboy
Forgot the image...

[edit]dammit didn't work, crappy screenshot taker. Oh, and how exactly do I go about changing the entire sites font? I havent done html in ages I can't remember.

It's easiest if you cascading style sheets. You can look at my source code, in the header, and see one. Then look at the text and see how it translates into tags.

*edit*

<style type="text/css">
b{
font-family:verdana;
font-size:12pt;
font-weight:bold;
font-style:normal;
text-align:left;
color:#636594
}

h1{
font-family:verdana;
font-size:12pt;
font-weight:bold;
font-style:normal;
text-align:center;
color:#300065
}
</style>

Don't use h1 though, name it anything but that. the your tags are just <b>text here</b>.
 
Alright, this is really pissing me off.

I've done what milefile has said and now my index page is in veranda. But the rest of my pages are not. I've copied the text/css coding from the index page into all the other pages, but they still display everything in times new roman. From the <html> tag to the <title> tags are exactly the same for all of the pages. But they're not displaying the same font. Help.
 
Originally posted by Cobraboy
Alright, this is really pissing me off.

I've done what milefile has said and now my index page is in veranda. But the rest of my pages are not. I've copied the text/css coding from the index page into all the other pages, but they still display everything in times new roman. From the <html> tag to the <title> tags are exactly the same for all of the pages. But they're not displaying the same font. Help.

You've written your CSS code wrong I think:

My site:
Code:
<STYLE type="text/css">
Font{font-family:Verdana,Arial,Helvetica; font-size:8pt}
A:link{color:#000000; font-weight:bold; text-decoration:none; background:none}
A:active{color:#000000; font-weight:bold; text-decoration:none; background:none}
A:visited{color:#000000; font-weight:bold; text-decoration:none; background:none}
A:hover{color:#000000; font-weight:bold; text-decoration:none; background:none}
</STYLE>

Your site:
Code:
<style type="text/css">
b{
font-family:verdana;
font-size:12pt;
font-weight:bold;
font-style:normal;
text-align:left;
color:#636594
}
</style>
 
No, I had the CSS right in the first place, I was just copying the wrong one, I've got no idea why I've got two.

If there was a finger smilie I would give it too you. :lol:
 
Originally posted by Cobraboy
No, I had the CSS right in the first place, I was just copying the wrong one, I've got no idea why I've got two.

If there was a finger smilie I would give it too you. :lol:
If only...
 
Back