Jump to content
xisto Community

Tyssen

Members
  • Content Count

    1,159
  • Joined

  • Last visited

Everything posted by Tyssen

  1. 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.
  2. 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).
  3. <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.
  4. The header looks good, but I'm not liking the way the content is split up into 2 columns down below. There's not enough differentiation between the two.
  5. 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.
  6. 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.
  7. 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.
  8. Trying setting margin: 0 as well. If that doesn't work, check out Position Is Everything's list of Explorer bugs.
  9. 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.
  10. For an alternative to a DHTML dropdown menu, check out Suckerfish Dropdowns - CSS dropdown menu which uses only 12 lines of javascript and works in just about every browser. I use this method on my company's site.
  11. 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.
  12. Tyssen

    Metatags

    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.
  13. DeviantArt has a section of Firefox skins as well or you can check out the Mozilla Themes page.
  14. 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.
  15. 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.
  16. 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.
  17. 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.
  18. I always find W3School's VBScript Functions page very handy when developing scripts for ASP.
  19. 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.
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.