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!

Search results for query: *

  • Users: Halcrow
  • Content: Threads
  • Order by date
  1. 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...
  2. 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
  3. 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
  4. 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
  5. Halcrow

    learning php...

    I want to learn php. What software do I need before I can start (e.g. a compiler) I only have access to "nice" webspace at work (by nice I mean webspace that supports php) and would idealy like to learn offline. Can I get software off the net? If so, where? Also, does anyone know of some...
  6. Halcrow

    margins, divs and Firefox

    I have a div in my page which takes up the full length of the screen. Under it I have another, similar div. I want a gap between them, so I set margin-bottom: 50px for the first one. In Firefox, this has no effect, and places the divs right next to each other. But, if I give the first one a...
  7. Halcrow

    annoying problem in IE regarding images...

    take a look at this example code: <style> #main-content { width: 760px; } #side-menu { float: left; width: 150px; } #left-image { float: left; } #right-image { float: right; } </style> ... <div id="main-content"> <div id="side-menu">...
  8. Halcrow

    another small CSS problem - FORMS this time...

    My form has a border around it (by default presumably) and I want rid of it. I've tried setting the border of the form and the border of the legend to 0px but this has no effect. How can I get rid of it, maintaining my Strict valid xhtml 1.1? Thanks Calum
  9. Halcrow

    cellspacing

    I'm making a site which contains a table (!) and I want it styled so that each column is seperated by a solid line. I set the left margin of each cell to be a solid line (e.g. margin-left: 1px solid #fff), then looked at my table. The cells had a little space between each of them, breaking...
  10. Halcrow

    w/idth?

    can anyone explain the /width and w/idth entries in this code. I pasted this from layout-o-matic - I am trying to understand it. width: 760px; \width: 780px; w\idth: 760px; border: 1px solid gray; margin: 10px; margin-left: auto; margin-right: auto; padding: 10px; Thanks Calum
  11. Halcrow

    &quot;select forms and php&quot;

    Hi there, I put this post in the HTML, XHTML & CSS forum but I think it might be more relevant here... I'm trying to create a form with "select" inputs which is processed by a php file and then sent to me via email. When I submit the form the browser doesn't display my "thankyou" page (like it...
  12. Halcrow

    php books?

    Can anyone recommend any good php books? thanks guys
  13. Halcrow

    online forms and php

    i am creating an online form that submits data to me via email using a php file. Everything works fine when I submit "text" inputs (<input type="text" name="myname" />) but I get my error page when I try to include "select" boxes. In my code I have: (for example) <form method="post"...
  14. Halcrow

    divs, arrangements and Firefox!

    I'm new to web site developement and am trying to set up my first site. The content area has three vertical sections: a left hand menu the content area a right hand menu I am trying to avoid using tables for page layout, so instead I've plaved each of these three things in div tags. Now, in...
  15. Halcrow

    nested lists?

    hi there, I want to create a nested list on my webpage, a bit like this: - item 1 - item 2 + sub item 1 + sub item 2 - item 3 but I can't do it! Here is the code I thought would work: <ul> <li>Item 1</li> <li>Item 2 <ul> <li>Sub Item 1</li> <li>Sub Item 2</li>...
  16. Halcrow

    ids and classes in Internet Explorer

    ok, I have an h-tag, assigned with a class, nested inside a div-tag, assigned with an id. I wrote some style for my h-tag in my stylesheet, but when I load up my page in IE, the h-tag gets given the style assigned to the div-tag (with the id) and ignores the style for the h-tag. If you're lost...
  17. Halcrow

    menus and images

    Hi there, I've made a menu (structured as a list), the links of which contain both text and an image of a small arrow. The arrow is of course a square gif, so I initially set the "containing space" (my definition would be the space in the gif where the arrow isn't - the extra space filling the...
  18. Halcrow

    another problem with images...

    I'm having trouble with CSS and image galleries. I want display an image with two borders - the first to be a solid line around the image, and the second to be another solid line roughly 30px away from the edges. I started to tackle this problem by setting the padding around the image to 0 and...
  19. Halcrow

    inline lists - can each list item be the same width?

    I'm trying to set up a menu bar, using an inline list containing each link. I've noticed that each list item defines its width depending on the amount of text. I would like to have each link set to the same width, but cannot get this to happen - the "width: x" command has no effect. What can...
  20. Halcrow

    positioning

    I'm having trouble positioning an image within a div tag. I want the image to be at the bottom of the div. Here's my code, why doesn't it work? Code: div.frame { width: 300px; height: 300px; border: 1px solid #000000; text-align: center; } img.image { position: inline...

Part and Inventory Search

Back
Top