Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Halcrow

  1. Halcrow

    Styles in a style

    oh yeah, forgot: If you want to change (for example) a visited link in a certain section (i.e in a div with id sidemenu) then your style would look like this: html: <div id="sidemenu"> <a href="/index.html">Home</a> </div> CSS: #sidemenu a:visited { color: #776655; text-decoration...
  2. Halcrow

    Styles in a style

    Hope this helps: set you default colours in the body tag: body { background-color: #121212; color: #800000; } Then, for any section that you want the colours to be different (i.e. in a sidemenu), put the section in an id'd div tag and apply different style to that: <div...
  3. Halcrow

    redirecting my entire site.

    hello everybody! I want to redirect my old site (www.oldsite.com) to my new site (www.newsite.com). I've set up an .htaccess file, containing the line: RedirectPermanent / http://www.newsite.com/ which should redirect every page on the old site to the main page of the newsite (thats what I...
  4. Halcrow

    301 Permanent Redirect...

    Thankyou everyone for your posts - I now have quite a few different ways to try out now. I actually got the .htaccess file method working on another site last night, but so far haven't tested on my "poor" server.
  5. Halcrow

    301 Permanent Redirect...

    Let me explain my problem as well as I possibly can: I was asked to redirect a site to its new location on the web. The previous host was a free one that doesn't support .php, SSI or anything other than html and jpegs. I had to set up a redirect to the new, nicer, server. I did this using a...
  6. Halcrow

    CSS Layout help, no tabes or java script

    ^ ^ ^fair point, but at least that will pad it out a bit. Shame height: x% doesn't work...
  7. Halcrow

    CSS Layout help, no tabes or java script

    just add a height to each column: #ColumnLeft{ float: left; margin-left: -150px; position: relative; width: 150px; z-index: 1; height: 200px /* or whatever height you want */ } that works for me. Also - You can use z-indexing on relatively positioned elements as...
  8. Halcrow

    Strange MSIE box model

    what about putting in: #navlist { border-collapse: collapse; } not tried it on your site, but that usually takes away any default borders between elements.
  9. Halcrow

    301 Permanent Redirect...

    Sorry to be a bit think, but I don't even know which forum to post this on! Any ideas??? Thanks Calum
  10. Halcrow

    301 Permanent Redirect...

    I want to set this up using a .htaccess file on the server, but I don't know how to...what should I do? Thanks Calum
  11. Halcrow

    question regarding IE...

    to cLFlaVA: yeah, that was the problem, no positioning Thanks for your post Calum
  12. Halcrow

    question regarding IE...

    forget it - somethings happened, not what I want but something at least, so I know now that it works! Thanks Calum
  13. Halcrow

    question regarding IE...

    Does IE understand z-indexing? I am trying to use it in a site but IE seems to completely ignore all my efforts. I realised a few weeks ago that it doesn't understand min-width, and now I'm unsure if z-index is supported. Thanks Calum
  14. Halcrow

    images....

    thanks :) Calum
  15. Halcrow

    images....

    can anyone either: suggest a good image resizing tool or point me to an image forum Sorry about the irrelevant post... Thankyou Calum

Part and Inventory Search

Back
Top