Tyssen
Members-
Content Count
1,159 -
Joined
-
Last visited
Everything posted by Tyssen
-
I'm not a fan of the non-sharp graphics or the ticker, but they're just personal things I guess.A couple of suggestions: rather than have a link to a page that isn't there (ie zip codes), just remove the link until the page is ready or create an under construction page instead. Also, on your home page you might consider using anchor tags so that people can get easily to information further down the page. And you need to check your Iditarod page in Firefox (Mozilla) cos it doesn't look too good.
-
My New Site -emoholic.net a plug for my site
Tyssen replied to emoholic's topic in Websites and Web Designing
Not a bad looking site - nice clean layout. Just one small thing - you're missing some images from your body preload javascript function call (photos, phil). -
Took Me Awhile. Bash/suggest/compliment
Tyssen replied to Trystim's topic in Websites and Web Designing
<td><div align="center"><img src="images/spacer.gif" width="17" height="1" alt=""></div></td> You don't need <div> tags inside your <td> for alignment - simply add align="center" to the <td> itself. -
I think the only way to attach sounds to mouse clicks is by using Flash. You could create your whole navigation system as a Flash movie and place it on your page where you need it.
-
Html Form Help Please finding a form script
Tyssen replied to iwuvcookies's topic in Websites and Web Designing
I'm not sure exactly what you're after but it sounds like you're after a rich text editor. Kevin Roth has developed a very good cross-browser version which I use on my company's site. -
Browsers And Css Differences in displaying CSS
Tyssen replied to theRealSheep's topic in Websites and Web Designing
If you use <style type="text/css" media="screen">@import "yourfile.css";</style>it'll hide the CSS from older browsers like N4 which means they'll get all your content unstyled. If you're creating your site with tables this can look quite unsightly, but if you've created your site using valid XHTML mark-up, it will be better (although everything will be unstyled, no background images etc.) (For an example of what I'm talking about, check out this page. That page has lost the link to its CSS. If you scroll down to the bottom of the page and click on any of the links under Designs, you'll see what it should look like.) Like Mizako says, you should be able to code everything into the one stylesheet to get all modern browsers to display your page properly and I use the same sort of process he/she does when designing: start with Firefox then get it right in the others. I personally wouldn't bother trying to get your pages to work in N4 or earlier - I think less than 1% of the browser market still use those. -
Left Img Padding In Ie do not manage to remove an left padding
Tyssen replied to mizako's topic in Websites and Web Designing
Trying setting margin: 0 as well. If that doesn't work, check out Position Is Everything's list of Explorer bugs. -
The first website I did for myself I did music & film reviews as well as doing a kind of travel diary (cos I was living overseas and travelling quite a bit at that time). You could also do reviews of books you've read or concerts you've been to. Just write stuff about whatever you're interested in and hopefully other people will be interested in it too.
-
My understanding is that, yes, it will hurt you on Google because it (and other search engines) don't like frames. This page explains Google's attitude towards frames.
-
Specific about something in general is a contradiction in terms. But if you have an online store, it is a good idea to have a different meta description for each product because general terms won't cover everything and meta keywords are largely overlooked. The meta description is still quite important. On your home page it should describe the site in general, but on other pages it should give more specific info about the content on those pages.
-
You need to keep in mind that some hosts that force ads on you will suspend your account if you use frame-busting/redirection scripts.
-
In SHTML and ASP it looks like: <!-- #include virtual="/pathtoyourfile.htm" -->or <!-- #include path="pathtoyourfile.htm" -->The first is absolute path, the second is a relative path.
-
style="background-repeat: no-repeat; background-image: URL('bk.jpg'); background-color: black;" A neater way to do this (shorthand CSS) would be: <STYLE type=text/css><!--body {font-family: "Verdana", "Arial", "Helvetica", "sans-serif";font-size: 9pt;background: #000 url(bk.jpg) top left no-repeat; }--></STYLE> You could apply it to the body tag as I've done, or you could create a class or ID tag and apply it to the main table.
-
Best Tools For Website Building website with database support
Tyssen replied to Binod Singh's topic in Programming
Not quite true - VBScript is what is used to create scripts for ASP pages which are executed on the server. You still need SQL to be able to interact with the database, but if you have a Windows host and already know VBScript, there's no need to learn PHP etc, just start coding in ASP. -
I always find W3School's VBScript Functions page very handy when developing scripts for ASP.
-
Not just that - the push is on (being led by the US at the moment I think) to make more & more sites 'accessible' to all users, that means people with disabilities too. If you do it right, redesigning your site for XHTML means that it will be accessible to older browsers, screen viewers, WAP devices etc. So not only will you not be marginalising anyone, you'll also be opening up your site to the widest possible market.