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: *

  1. TenTonJim

    CSS alternating table row color

    I got this from http://alistapart.com. It addresses the TR tags within an ID'd TABLE without having to css class each TR or TD. If you read the thread of replies to the article there at alistapart, you will find about 5 different yet functional solutions... just pick what best suits you. I liked...
  2. TenTonJim

    Controlling Link text color on hover

    Hi Jock, Try this... 1) drop the font tag with the color <font color=&quot;#00FF00&quot;><b>(Facilitators only)</b></font> 2) try changing A:link to just A in your stylesheet 3) this is in your body tag: style=font-size:smaller;&quot;border-left: 2 solid #FFFFFF> maybe should be...
  3. TenTonJim

    1024x768 or 800x600 to design webpages?

    I think the best idea would be to attempt a fluid design (yes and still use photoshop) so that it looks good in both (or all) resolutions but not dependent on either one to look good. Tiling backgrounds... percentage divs and tables... JimS. aka TenTonJim Looking for work:) (in Florida???) I...
  4. TenTonJim

    @Media Print question

    no experience with this (landscape issue) but perhaps try putting a div just inside your body tag and calling that from the size:landscape rather than the body??? JimS. aka TenTonJim Looking for work:) http://tentonweb.com/resume/resume.asp
  5. TenTonJim

    How to CSS Print Styles to print catalog.

    You will need to assign whatever will need to be moved a specific class or id. These all need to be nested in a div... like <div id=&quot;content&quot;>, which will be the only thing printed. All your other content that you do not want printed should also be in divs... <div...
  6. TenTonJim

    XHTML and Javascript

    also, xhtml1.1 has given up the &quot;name&quot; attrib in favor of &quot;id&quot; for everything... forms, images, etc... here is an xhtml1.1 family site I am building... not all done but hey it's compliant!!! http://freecfm.com/t/tentonhead/ JimS. aka TenTonJim Looking for work:)...
  7. TenTonJim

    list menu..

    if you are referring to a select box... <select name=&quot;mystuff&quot; style=&quot;width:300px;&quot;> This will make it 300px long (wide) no matter even if the text is longer or shorter. this works in browsers that understand css... forget about pre NS6 though. You can set all of your...
  8. TenTonJim

    How many different stylesheets for different browsers?

    here is a link to an example of how to overcome the box model problem in IE... http://www.tantek.com/CSS/Examples/boxmodelhack.html also, I have found that by declaring your doctype and then checking it for validity, a lot of the IE vs NS6+ problems went away. I would suggest a global.css as a...
  9. TenTonJim

    HTML tag inside value of INPUT tag

    try this... <font%20color='red'> NS sometimes has trouble translating spaces as values... JimS. JimS. aka TenTonJim Looking for work:) http://tentonweb.com/resume/resume.asp
  10. TenTonJim

    can i add a refresh to .css

    search engines do not index your .css files... and no that would not work anyway. Try this in the OLD html page that you want to use as the redirector... <script language=&quot;JavaScript&quot;> <!-- if (window == top) top.location.href = &quot;newindexpage.html&quot;; // --> </script>...
  11. TenTonJim

    Can a BODY BACKGROUND image be &quot;stretched&quot;?

    You can't stretch an image. You can use css to center what you do have though... -------------------------- body { font: normal 0.75em/1.5em Verdana, Arial, sans-serif; padding:0px; margin:30px 50px 50px 50px; background: #d0d0d0 url('/ttw2002/i/bigtt_d0d0d0.jpg') center center no-repeat...
  12. TenTonJim

    CSS: TD hover

    Thanks a lot. I am totally into CSS and just seeing what the Gecko browsers support vs. IE is ... well a pretty big gap! Gecko rocks for css!!! Alas IE has about 90% market share but hopefully someday that will either turn around or IE will support advanced css (make that web standards!) I try...
  13. TenTonJim

    align an image against the top right hand side of the page

    You can also absolutely position the element: <style> .righty {position:absolute; top:0px;right:0px;} </style> <body> <table width=&quot;500&quot;> <tr> <td>Hey</td> <td>I am</td> <td>Not colored</td> </tr> <tr> <td>Hey</td> <td>I am</td> <td>Not anything</td> </tr> <tr> <td>Hey</td> <td>I...
  14. TenTonJim

    CSS: TD hover

    Standards compliant browsers such as Mozilla/Netscape 7 will support the hover pseudo class for elements other than A: This works in Mozilla/NS7, not in IE... yet anyway :) JimS. ------------------------------------------ <html> <head> <title>ooo</title> <style> td.liter:hover {...

Part and Inventory Search

Back
Top