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

    CSS font-family

    iisman, I set my font in the same style as Chris Hunt with a multi-element selector for the font. Here's the way I set the font for a page/pages: body,div,td,h1,p,span,blockquote,textarea { font-family: verdana,arial,sans-serif; } Whatever other elements I use, I stick them in too. I cover...
  2. NeckBone

    Problem with Text Highlighting in IE6

    Baby Jeffy, Using the comment tags, at first glance, I would assume that the doctype would be commented out like any other statement and wouldn't be considered by any browse. If you use no doctype or this doctype: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> IE6 will go...
  3. NeckBone

    Problem with Text Highlighting in IE6

    Thanks for the info guys. Billy Ray I'll play with the z-index. I haven't gotten back to this yet, been locked down on other stuff. I'll tear into it tomorrow/today. Baby Jeffy, Will putting comments in front of the doctype affect any other browsers besides IE. I never heard of using this...
  4. NeckBone

    Problem with Text Highlighting in IE6

    Greetings again folks, I have a layout which is using absolute positioning. It's working very well cross-browser but there seems to be a bug in IE6. I believe it's related to the absolute positioning and taking the content out of document flow. When I open the page in IE6 and attempt to...
  5. NeckBone

    position: Compatibility

    vragabond, Nice post and good advice. On my PHP site, I draw the line at 6 with everything except IE Mac, FF, and Safari. That's a lot easier to control the display because I'm using includes there. This site here I'm using js and css. I'll go with 6 on IE. That Netscape 5 was supposed to...
  6. NeckBone

    position: Compatibility

    Hi Folks, I'm back again looking for some advice :^) I'm tired of hanging on to the old. I'm tired of beating my brains out catering to old browsers. I've got my page design complete using relative and absolute positioning. For old browsers, I'm not serving any style info and the generic pages...
  7. NeckBone

    How to get rid of space in menu of IE

    Thanks guys for your input. I appeciate it. I got it working with the <ul> style list and it works great. I had a lot of trouble trying to get a horizontal link menu to work on the same page with the <ul> link menu. I gave up before success there. Thanks mucho, neckbone Youth and beauty are...
  8. NeckBone

    How to get rid of space in menu of IE

    Thanks <marc> Here's the doctype: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> The ul is like so but with about 10 <li>: <ul> <li class="menu"><a href="#" title="List Item</a></li> <li class="menu"><a href="#"...
  9. NeckBone

    How to get rid of space in menu of IE

    Hi folks, I'm trying to get a ul style menu to work in IE without having the space in between the list. IE adds a pixel or two space in between the list items. Can you tell me of a way to get rid of that space and have the display to look the same as in FF? Here's the code I'm using at this...
  10. NeckBone

    Vertically centre text in heading

    Wartook.......Would this work? h1 { width: 70px; height: 70px; background-image: url('image.gif'); background-repeat: no-repeat; text-align:center; line-height: 64px; margin: 0; padding: 0; } or this? h1 { width: 70px; height: 70px...
  11. NeckBone

    Sending a web page via email

    Thanks BillyRay, I gave up on this and have taken a different approach. neckbone For every problem, there's a solution and every solution brings it's own set of problems.
  12. NeckBone

    Sending a web page via email

    Howdy Folks, I've been sitting here staring at a blank screen agaan trying to figure out what path to take. I'd like to upload an html form into a visitor's window and after the visitor completes the form, he/she hits a button and the entire page is sent to me via email. It would be sent in a...
  13. NeckBone

    JavaScript Popups & Firewalls - Browser Privacy Settings

    hey Dan, I haven't as yet experienced any problems with the script yet but I've noticed that with my firewalls or browser privacy settings are set too high that some functions don't work when I visit some sites. These may be cookie related. Functions like popup windows and form submissions...
  14. NeckBone

    JavaScript Popups & Firewalls - Browser Privacy Settings

    Hi Everyone, I'm working on an html page that I'm using small images as links to open new windows in order to display larger versions of the pictures. I'm using <a href=javascript:openHer()>Open</a>, sizing the new window to fit the image, and positioning it at (0,0). I'd like to know if you...
  15. NeckBone

    Having Nightmare with PHP mail script!

    Can you please help me. I'm using a script to mail info taken from a form and mailing it my email box. It works great on one server. The same script and form won't run on another server which is also a different host. I think it has to to with send_mail. In phpInfo() chart I see this on the...
  16. NeckBone

    How do I include or require a PHP file?

    Thanks guys, I appreciate it. For every problem, there's a solution and every solution brings it's own set of problems.
  17. NeckBone

    How do I include or require a PHP file?

    Hi Folks, I'm a newbie to PHP, I have a C++ background and am trying to get started with PHP. I'm also trying to use the GPL browser detector at apptools.com/phptools/browser/source.php I've been practicing with it loaded on Apache Server with PHP 4 installed but not getting anywhere. I'm not...
  18. NeckBone

    Getting Rid of Body Margins in Opera and Netscape

    <body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0> thanks vb, That's what I've always used and it works. I was looking for a scripting way to set margins that would be compatible for old and new browsers to set the margin. CSS doesn't work for older browsers. Do you know how to set...
  19. NeckBone

    Getting Rid of Body Margins in Opera and Netscape

    Would some kind soul please tell me how to eliminate the margins/padding that Opera and older Netscape browsers put around a document? Thanks and Happy New Year! For every problem, there's a solution and every solution brings it's own set of problems.
  20. NeckBone

    Referencing a Function in another window

    /* I want to be able to reference a javascript function in the main window from the popup. Is this doable? */ Yes, it is possible if you're opening a file that already already exists, such as blah.html, with window.open(). From the child window, you can call a function such as...

Part and Inventory Search

Back
Top