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 Mike Lewis 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. jcostanzo

    Javascript issue

    Ok I am having a problem and I cannot figure it out. In internet explorer the script works great. Firefox is being a pain. <script type="text/javascript"> var xmlDoc=null; if (window.ActiveXObject) {// code for IE xmlDoc=new ActiveXObject("Microsoft.XMLDOM"); }...
  2. jcostanzo

    compliant CMS

    I would agree you have to make a choice with the CMS stuff. I liked it and used it a lot. Now I am in school learning web development I no longer see the need for it
  3. jcostanzo

    HTML to JPEG Converter

    I personally use MSWnap http://www.mirekw.com/winfreeware/mwsnap.html
  4. jcostanzo

    Creating tabbed content, best way?

    To kind of help you a little more you would basically throw a showIt hideIT function. function hideIt(object) { object.style.visibility="hidden"; } function showIt(object) { object.style.visibility="visible"; } There would be a start or a snippet of some coding
  5. jcostanzo

    div alignment

    Thank you for the tip. I did solve my issue with the margin-left in css. This is skelton code I will fix soon.
  6. jcostanzo

    div alignment

    Ok I think I might have gotten what you meant .navigation{ float: left; clear: both; padding-right: 25px; width: 150px; } .content{ margin-left: 150px; } but still did not work
  7. jcostanzo

    div alignment

    But the width of the navigation is not set. Or are you saying to set the width of the navigation and then set the margin?
  8. jcostanzo

    div alignment

    Ok I have been working with XHTML and CSS to create a portfolio page. I created an outer div and then nested in that 3 divs for header nav and content. Here is the page http://jrock2004.net/pages/resume.htm Now as you can see when the content section gets longer than the nav section the...

Part and Inventory Search

Back
Top