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

    multiple image swap with 1 link

    OK I got it working. If anyone is following this post here is how I got it to work. CSS #box_wrapper { position: absolute; left: 72px; top: 240px; width: 169px; } a.box1, a.box1:visited { background: url(images/6boxes_1.gif) no-repeat; position: relative; float...
  2. technoknow

    multiple image swap with 1 link

    I know that it's easier to look at something to figure it out than have someone tell you about it, so I've put a mockup online at: http://jimsgotweb.com/mouseover.html In FireFox and Netscape the image changes and the "Portfolio" image shows next to it. I'd appreciate you looking at it and try...
  3. technoknow

    multiple image swap with 1 link

    OK, i've been able to get it to work in NN and FF but not IE. Here is what I've got. CSS #box_wrapper { position: absolute; left: 70px; top: 240px; width: 169px; } a.box1, a.box1:visited { background: url(images/6boxes_1.gif) no-repeat; position...
  4. technoknow

    multiple image swap with 1 link

    I have one image that on mouseover it needs to change and a third image also needs to become visible. I have the first and second images working fine but I can't figure out how to make the third image to become visible. Here is my CSS for the 2 images: #box_wrapper { position: absolute...
  5. technoknow

    simple positioning?

    Oh, so the font-size:0 gets IE to set the spacing right! Thanks Vragabond, for helping me out. I wish I could show my appreciation more, but here's a star. TechNoKnow Once upon a midnight dreary, while I pondered, weak and weary, over many a quaint and curious volume of forgotten code.
  6. technoknow

    simple positioning?

    Vragabond, thanks. I've tried what you said, I think, and it works in FF and NN but doesn't show the link in IE. the HTML <div id="navLines"> <a href="Link1.html" class="company_link"></a> </div> and the CSS: #navLines { background: url(images/nav_table.gif) no-repeat; position...
  7. technoknow

    simple positioning?

    Sorry, http://jimsgotweb.com/companyWorking.html Once upon a midnight dreary, while I pondered, weak and weary, over many a quaint and curious volume of forgotten code.
  8. technoknow

    simple positioning?

    Nope, thanks Billy, but I just didn't paste it correctly. Here is a link to the simple code, just 3 images. The "company" should be in the first box and "portfolio" in the second. It views correctly in FireFox1, Netscape7.2, Opera7.5 but not IE6. Can anyone tell me why? TechNoKnow Once upon a...
  9. technoknow

    simple positioning?

    I have an image, "nav_table.gif" that I'm trying to get the text link images "companyLink.gif" and "portfolioLink.gif" to line up on top of. The links should be on the first 2 lines. No big deal right? It looks right in FF but not in IE 6. Here is the HTML <!DOCTYPE HTML PUBLIC "-//W3C//DTD...
  10. technoknow

    Dynamic size for box

    Thanks for your replies. I've tried the css solution and it works great. All of the other images are moving too when the box expands but I'm sure that is something I can fix. Thanks Vragabond. TechNoKnow Once upon a midnight dreary, while I pondered, weak and weary, over many a quaint and...
  11. technoknow

    Dynamic size for box

    I'm working on a website that was designed with a box that has a width of 360px and a height of 310px. The content that will fill the box is static html but will be different for each page. Some of the pages will require that the height of the box expand for the content, the width will remain...
  12. technoknow

    Absolute vs Relative positioning

    Thanks everyone for all of your insights. I've been using absolute positioning with my images and have noticed that early versions of IE has a problem with them. I think that I'll try using floated elements with relative positioning to see what kind of effects I can achieve. Thanks for your...
  13. technoknow

    Absolute vs Relative positioning

    Hi, a few questions. I've read in the forum that absolute positioning should be avoided. Could someone explain why? I've got 12 images that I'm aligning. What would be the best way to do this? Should I use DIV tags or P tags? Should I use a container or wrapper to enclose elements, why? Thanks...
  14. technoknow

    Inserting Flash movie with CSS

    Well, I got it to work but I'm not sure how. I worked with the OBJECT tag and it started working. Thanks for your time Vragabond. Here is the OBJECT tag now: <div id="topFlashWrapper"> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"...
  15. technoknow

    Inserting Flash movie with CSS

    It doesn't display at all in IE. It displays in FF and NN. In IE if you view the movie from the published file it shows fine, here is the source: <HTML> <HEAD> <meta http-equiv=Content-Type content="text/html; charset=ISO-8859-1"> <TITLE>topFlash</TITLE> </HEAD> <BODY bgcolor="#FFFFFF"> <!--...
  16. technoknow

    Inserting Flash movie with CSS

    Hi, I've used the following CSS: #topFlashWrapper { position: relative; margin: 0; left: 87px; top: -96px; width: 350px; height: 94px; z-index: 1; } Here is the html: <div id="topFlashWrapper"> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"...
  17. technoknow

    adding &quot;alt&quot; to image with css

    Thanks blueark, I'll give that a try. Tech Once upon a midnight dreary, while I pondered, weak and weary, over many a quaint and curious volume of forgotten code.
  18. technoknow

    adding &quot;alt&quot; to image with css

    Yes, I'm using the alt tag for the browsers that can't display images. It seems like I remember that there was is way to use the image once in the html with the alt tag and then reuse it with css? No? Thanks, technoknow
  19. technoknow

    adding &quot;alt&quot; to image with css

    How do you add the "alt" text to an image if you are using: #MainText { background: url(images/MainText.gif) no-repeat; } in your css, and: <div id="MainTxtTop"></div> in the HTML? Thanks, technoknow
  20. technoknow

    Puzzled... Optimization for dynamic pages too !?!?

    I know this post is old but I ran across a site: http://www.buildingastore.com/1/ The 1 can be replaced with any number. If you click on any of the keywords if takes you to the same page: http://www.buildingastore.com/ This is spamming right? Why would someone go through all of the trouble to...

Part and Inventory Search

Back
Top