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

    problems with gallery 'back' and 'next' links

    omm... do i have to change anything in specific? i set the 'Back' link to <a href="javascript:lastPic()">Back</a> i also changed 'default.gif' to the first picture that loads with the page, and still no go. this is how my javascript looks... var lastSrc = ''; function changePic(source){...
  2. sumilsay

    problems with gallery 'back' and 'next' links

    on my page, i have thumbs that when clicked, change a main image on the page to the corresponding thumb. for example, thumbs (more than just 2): <a href="javascript:changePic('aa01.jpg')"><img src="opacity/thumb_aa01.jpg" hsrc="thumb_aa01.jpg" class="thumb" /></a> <a...
  3. sumilsay

    wonky script i cant figure out...

    hey peeps, first and foremost, thanks for your time... this is the html i have for thumbnails, i have about 20 thumbs: <img src="opac_thumb_kt01.jpg" onMouseOver="javascript:rolled('thumb_kt01.jpg')" onMouseOut="javascript:rolled('opac_thumb_kt01.jpg')" class="thumb" name="thumb" id="thumb"...
  4. sumilsay

    rollover thumbnail question...

    hello all, i have some thumbnails that, when a user rolls over them, it goes from 50% opacity, to 100%. i have all the thumbnails made and everything, which is in this code... <a href="javascript:changePic('kt01.jpg')"><img thumb_kt01.jpg" onMouseOver="javascript:rolled('thumb_kt01.jpg')"...
  5. sumilsay

    are scrollable divs possible?

    or am i asking for too much? :S i was wondering if it is possible to make a scrollable div to show the main content of each section in my page. a div roughly 400x190 (w x h). thanks for your time. a.
  6. sumilsay

    Begginer Help SVP

    i am trying to learn... i really am :( <?php if ($HTTP_GET_VARS["who"] == "admin") { echo(" <h1>here's a default page for admin</h1> <a href='?who=admin&amp;step=list'>list all</a><hr /> <table border='1'> <tr> <td>html search widget<br /><a...
  7. sumilsay

    DIV question... blast you IE!!!

    hi ChrisHirst, i'm not too sure what you mean by using a complete doctype. :S
  8. sumilsay

    DIV question... blast you IE!!!

    okay, i'm trying to center a div tag classed as "content" but it won't let me. when i try to center the div with align="center" it works, but as soon as i add class="content" it loses the align property. i have kinda cut down the problems to the part in my css where i specify width. when i take...
  9. sumilsay

    displaying &lt;div&gt;s beside each other...

    do spans work in firefox? cuz mine arent and im not sure if they even can. sawry!!! but thanks again...
  10. sumilsay

    displaying &lt;div&gt;s beside each other...

    hey peeps. my question for today is... how do i get 2 <div>s to align beside each other. a break is automatically put in. here is my code: html- <div class="title_left"></div><div class="title_right"></div> css- div.title_left{ background-image: url(images/title_left.jpg); width: 448px...
  11. sumilsay

    Hardware Upgrade Info Needed....

    hello, i am looking to buy a new powerbook, but i am confused on what exactly i should get. my biggest concern is about memory. i want to know how much (on average) memory costs for the 12&quot; model. could i buy additional memory sticks and add them to the machine? or would i have to replace...
  12. sumilsay

    Is there really any reason to program for NS anymore?

    i think it's good to develop for netscape still. my reasons... - i think its a better browser. webpages appear clearer. - apple is getting better and better. everyone knows that they're the graphic gurus, and the digital industry is making a huge push towards the multimedia. netscape and mac...
  13. sumilsay

    new user Looking For Tips...

    hey peeps, i have a bunch of word documents that i am converting to pdf's. in word, i have the add-in where i can click a button and it coverts the whole document. my question is, are there any tips/techniques that i can do to make the converted pdf file to the smallest size possible? thanks, me.
  14. sumilsay

    downloadable JPEGS... is this POSSIBLE???

    RISTMO, that would be awsome if you can do that. thanks so much. me.
  15. sumilsay

    downloadable JPEGS... is this POSSIBLE???

    awsome! very interesting and educational. thanks bro! peace.
  16. sumilsay

    downloadable JPEGS... is this POSSIBLE???

    hi EdwardMartinIII, but that way, it will only open the picture in the explorer window, rather than having the save box open. i want the user to be able to download the pic right away, rather than the pic opening up. thanks, me.
  17. sumilsay

    downloadable JPEGS... is this POSSIBLE???

    sounds simple right? well, i know that a user can download a jpeg by simply right-clicking. but is it possible to open a download box when a link is clicked? for example, pdf's, tiff's, and other large files sometimes open up a download box automatically. is there anyway to do this with a link...
  18. sumilsay

    script doesnt work in Netscape... WHO WANTS TO TRY?

    thanks greelmo, worked like a charm. i used: document.img.src=source; document.img.width=w; document.img.height=h;
  19. sumilsay

    script doesnt work in Netscape... WHO WANTS TO TRY?

    oh ya, and here's my image code: <img src=&quot;../../../images/hay_forage/rbale_carrier/control.jpg&quot; name=&quot;img&quot; id=&quot;img&quot; width=&quot;156&quot; height=&quot;243&quot;>
  20. sumilsay

    script doesnt work in Netscape... WHO WANTS TO TRY?

    hey peeps, i have a pretty simple script that changes an image source when a link is clicked. it works in explorer, but not in netscape. here's the script: this is in the <head> <script type=&quot;text/javascript&quot;> function changePic(source,w,h){ img.src=source; img.width=w...

Part and Inventory Search

Back
Top