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 SkipVought 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: bpw89
  • Order by date
  1. bpw89

    IE6 doesn't respect width: 100% inside an absolute box

    I am trying to modify a basic horizontal CSS drop down menu (found at http://www.cssnewbie.com/horizontal-dropdown-menus/) to match the color scheme of the website I'm developing. The problem is in IE6, where the second layer of the menu stretches outside of its container, even though it is set...
  2. bpw89

    absolutely positioned span disapears in IE 5.5 & 6

    http://www.w3schools.com/browsers/browsers_stats.asp Why make your site inaccessible to 6% of users when you don't have to? Bryon W - http://www.wcctechhelp.com -- Visit my latest website: AwfulDeals.com. Sign up for the Awful Newsletter.
  3. bpw89

    absolutely positioned span disapears in IE 5.5 & 6

    Hallelujah! Thank you Vragabond. It worked, and I'm glad I avoided javascript. Bryon W - http://www.wcctechhelp.com -- Visit my latest website: AwfulDeals.com. Sign up for the Awful Newsletter.
  4. bpw89

    absolutely positioned span disapears in IE 5.5 & 6

    Hey, I'm hoping for some CSS help: Whenever someone hovers over a link in a menu, I want a section below to appear with more information. I am using a SPAN inside the link. Normally, it is set display:none; then when on hover, it changes to display:block; and absolute positioning. This works in...
  5. bpw89

    reg exp question

    Thanks for your suggestion. As a rule of thumb, I usually think of a solution right after I give up and post a question. In this case, I used: function checkletters($string) { $bad = eregi_replace("([a-zA-Z]+)","",$string); if($bad == "") { return false; } else { return true; }...
  6. bpw89

    reg exp question

    Hi, I am trying to make sure that a string contains only letters, and no other characters. I am using: function checkletters($string) { if (!preg_match($string, "^([a-z]|[A-Z])*$")) { return true; } else { return false; } } I am getting this error: "Warning: preg_match()...
  7. bpw89

    PHP variable isn't being passed between files

    Thanks for everyone's input, using global $name; did the trick!
  8. bpw89

    PHP variable isn't being passed between files

    Hi all, I'm a web designer, and I've been working on some very simple PHP lately. I hope that someone can help me with a strange problem: I've got a file (index.php) in which I've defined a variable, and called another file. It look something like this: $name="home"...
  9. bpw89

    IE7 bugs - flickering links and disappearing div's

    That was so simple... Thanks
  10. bpw89

    IE7 bugs - flickering links and disappearing div's

    Never mind about the links ... I just figured them out. Any insight about the divs is still welcome (and sorely needed).
  11. bpw89

    IE7 bugs - flickering links and disappearing div's

    Hi, I'm a rookie web designer, and I recently started testing all of my sites in IE7. All except 1 work great. I'm hoping that I can get some help with the bugs I encountered in that last one. Here's the problem: I've created a box with rounded corners, except that in IE7 the two left divs...

Part and Inventory Search

Back
Top