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 Wanet Telecoms Ltd 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: i3iz
  • Order by date
  1. i3iz

    IE/win Flashing....

    ...serif; color: #FFFFFF; float: left; list-style: none; background: #00c; } #nav a { display: block; color: #fff; text-decoration: none; } /* Image... #nav a.submenu { background: url(rightarrow2.gif) center right no-repeat; } */ #nav li.level1 { float: left; margin: 0; text-align...
  2. i3iz

    IE/win Flashing....

    Suckerfish is also supposed to "flicker" http://www.alistapart.com/discuss/dropdowns/10/ I suppose i could check them out, but i figured they had the same problem. --i3iz Technical Newbie
  3. i3iz

    IE/win Flashing....

    ...2.The "submenu"s level 2 and level 3 3. yes 4. not sure what you mean //HERE is the CSS body { behavior: url(includes/csshover.htc); } /* WinIE behavior call */ a.navwhite, navwhite { font: normal 11px verdana; color: #ffffff; } /* Menu Font and Color */ div#nav { font...
  4. i3iz

    IE/win Flashing....

    I am implimenting a new menu system at work it is CSS and uses HTC to get IE/win to recognize my menus. Unfortunately everytime i move to a different part of the menu, it looks as if the entire menu reloads. I will post the code if i need to, but i am curious as to what could be causing this...
  5. i3iz

    Internet Explorer looks so different...help!

    haha... thanks you rock... i will clean it up. --i3iz Technical Newbie
  6. i3iz

    Internet Explorer looks so different...help!

    Well the code is in http://tek-tips.com/viewthread.cfm?qid=1020668&page=1 but my question is... Howcome IE/Win keeps the level1 160px when i have told it i want it to be 83.333px? is there special coding needed for IE?
  7. i3iz

    Shift CSS Menu over??? how???

    ok so now i just put the below list into a table and removed the other margin. Turns out the float was doing all of the work. New problem is the fact that on windows IE it inherits some of the values. So instead of Level1 = 83.333px, it is actually 160, and level2 and level3 are also 160px...
  8. i3iz

    Shift CSS Menu over??? how???

    i want it to be centered. But i want each float to be 83.333px to the right of the previous one... does changing the margins in this line affect the rest of the menu? --i3iz Technical Newbie
  9. i3iz

    Shift CSS Menu over??? how???

    ...charset=iso-8859-1" /> <style type="text/css"> a { color:#FFFFFF; } body { background-color:#000; behavior: url(csshover.htc);} /* WinIE behavior call */ navwhite a, navwhite { font: normal 11px verdana; color: #ffffff;} div#nav { font: normal 11px verdana; color: #ffffff; float...
  10. i3iz

    uploading images/creating thumbnails

    this code is awesome.... <?php if(isset($_POST['Submit'])) { $size = 150; // the thumbnail height $filedir = 'pics/'; // the directory for the original image $thumbdir = 'thumbs/'; // the directory for the thumbnail image $prefix = 'tn_'; // the prefix to be added to the original name...
  11. i3iz

    uploading images/creating thumbnails

    for some reason i cannot get the above code working. Is there something missing? --i3iz Technical Newbie
  12. i3iz

    uploading images/creating thumbnails

    Flubbard, thanks, i will try that code. I can upload a file, and i can insert the location into the mysql db, but when i start to try to resize it, i get lost in the code. I am a graphics guy not a coder. I am good at appropriating code. So thanks i will try it. --JB --i3iz Technical Newbie
  13. i3iz

    Help with NESTED IF statements...i think

    Why am i getting an error at the start of my nested if code? <?php function thumb($source, $quality = 80) { /* Check for the image's exisitance */ if (!file_exists($source)) { echo 'File does not exist!'; } else { $size =...
  14. i3iz

    uploading images/creating thumbnails

    I tried to use Litebearers Code and it is giving me an error at line 14. Which is tmp_name.... I changed it to my serverpath.... I HAVE HAD SO MUCH TROUBLE GETTING A FILE TO RESIZE UPLOAD AND STORE LOCATIONS OF THE FILE AND THUMB IN THE DATABASE why can no one help me? --i3iz Technical Newbie
  15. i3iz

    Plz Help: Image Resize, when inputing into DBA

    anyone know how to integrate my upload script to utilize the resized images? --i3iz Technical Newbie
  16. i3iz

    Plz Help: Image Resize, when inputing into DBA

    ...list($width_orig, $height_orig) = getimagesize($filename); if ($width && ($width_orig < $height_orig)) {    $width = ($height / $height_orig) * $width_orig; } else {    $height = ($width / $width_orig) * $height_orig; } // Resample $image_p = imagecreatetruecolor($width, $height); $image =...
  17. i3iz

    Plz Help: Image Resize, when inputing into DBA

    ...the rest scaled to that? seems like i can do some type of math. HOW DO I WRITE THIS IN THE CODE BELOW? If H/w > 1 h= 150 w= (h/old H) * Old W else if h/w < 1 w=150 h=(w/old W) * Old H Else if h/w=1 w=150 h=150 Sorry i am a newbie...still learning I really...
  18. i3iz

    Plz Help: Image Resize, when inputing into DBA

    here is my question... how do i do this?  can you resize images - yes! use the php image manipulation add-on libraries.  I want to split the upload into 2 files, a thumbnail and a resize to be within a certain parameter. Seeing someone elses code doing this would help. I just cant figure...
  19. i3iz

    displaying pictures on a site

    ...and may take a while to load on a dial up connection.<br> Click an image to view a larger version.</span><br> <?php $result = mysql_query('SELECT * FROM gallery ORDER BY id DESC LIMIT 12'); ?> <? while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) { ?> <div class="pic <? echo...
  20. i3iz

    Basic php? How to forward to new page?

    Use If, else; If $form = agree {new code} else If $form = ""; $form = "new"; If $form = new {agree code} basically redirect the browser to different points on your page. Above code may be incorrect. --i3iz Technical Newbie

Part and Inventory Search

Back
Top