obsidian Posted May 4, 2007 Share Posted May 4, 2007 To cite a quote used on me when I started the forums a while back, the banner and border are what might be called Look-I-just-pirated-Photoshop-and-look-at-all-these-filters-esqe. It's not horrible, but it just doesn't do anything for the site. Also, there is still no color in the body really. One other note is that there is still no padding around the edges of your content within those boxes. ...and I hate to be the nay-sayer here, but what busi says he likes about the about us page looks really bad to me. It's way overkill on the borders, and it makes the page look more amateur. As I stated before, overall, it's not horrible, but there are a lot of little nuances that could be improved. Quote Link to comment https://forums.phpfreaks.com/topic/49432-wwwoleaanet/page/2/#findComment-245432 Share on other sites More sharing options...
clown[NOR] Posted May 4, 2007 Author Share Posted May 4, 2007 thanks for the feedback obsidian.. I have added paddings on places I thought you ment, but looks like I missunderstood you then But I cant agree on what you say about the photoshop part. I used one filter nothing more (Motion Blur) What kind of colors would you like to see in the body? what is it that makes the about page look amateur? there's just some info about me. nothing more than that.. is it the border's around the text? the info? Quote Link to comment https://forums.phpfreaks.com/topic/49432-wwwoleaanet/page/2/#findComment-245507 Share on other sites More sharing options...
obsidian Posted May 4, 2007 Share Posted May 4, 2007 Here is what your CSS looks like after I made a couple adjustments to better show you the spacing issue I was referring to: body { line-height: 1.3em; } a:Hover { text-decoration:underline; color:#000000; } a:Link { text-decoration:underline; color:#000000; } a:Active { text-decoration:underline; color:#000000; } a:Visited { text-decoration:underline; color:#000000; } tr,td,div { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; color:#000000; } td { padding: 3px; } #header { font-family:Georgia, "Times New Roman", Times, serif; font-size:16px; font-weight:bold; color:#000000; } This throws off your alignment a tad since you're using tables for your layout, but that can be fixed, too. I didn't necessarily mean that you used a ton of filters on the banner, but it looks as though it was thrown together. There doesn't seem to be any real point to it. It's not bad, it just doesn't really add anything to the site for me, that's all Quote Link to comment https://forums.phpfreaks.com/topic/49432-wwwoleaanet/page/2/#findComment-245532 Share on other sites More sharing options...
clown[NOR] Posted May 4, 2007 Author Share Posted May 4, 2007 but if I change from td to for example #td can i then just change specific td's by using the id="" on the td tag? Quote Link to comment https://forums.phpfreaks.com/topic/49432-wwwoleaanet/page/2/#findComment-245552 Share on other sites More sharing options...
Ninjakreborn Posted May 4, 2007 Share Posted May 4, 2007 I am not that great visually, so 50% of the time what I say I like looks good, but 50% what I say I like look's bad. So thanks for the corrections obsidian. Quote Link to comment https://forums.phpfreaks.com/topic/49432-wwwoleaanet/page/2/#findComment-245569 Share on other sites More sharing options...
obsidian Posted May 4, 2007 Share Posted May 4, 2007 link=topic=138600.msg591043#msg591043 date=1178302020] but if I change from td to for example #td can i then just change specific td's by using the id="" on the td tag? You can certainly reference specific table cells with ids, but you'd be better off learning to use classes. Just put something like class="spacer" on the td tags that you wish to pad more, and then you can reference those cells like so: td.spacer { padding: 3px; } Quote Link to comment https://forums.phpfreaks.com/topic/49432-wwwoleaanet/page/2/#findComment-245587 Share on other sites More sharing options...
clown[NOR] Posted May 4, 2007 Author Share Posted May 4, 2007 thanks for the info... I just learned something new.. well.. not new, I've heard about it, just never taken the time to read about it Quote Link to comment https://forums.phpfreaks.com/topic/49432-wwwoleaanet/page/2/#findComment-245665 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.