Web Design Forum: Frisby - Viewing Profile - Web Design Forum

Jump to content

WDF
WDF Premium Memberships Reseller Hosting

Frisby's Profile User Rating: -----

Reputation: 1 Neutral
Group:
Members
Active Posts:
175 (0.15 per day)
Joined:
22-December 08
Profile Views:
4,445
Last Active:
User is offline Oct 20 2011 10:20 PM
Currently:
Offline

My Information

Member Title:
Dedicated Member
Age:
16 years old
Birthday:
April 28, 1995
Gender:
Female Female
Location:
Sitting on a swivel chair.
Interests:
Cheesecake, web design, bowler hats, trenchcoats in general.

Contact Information

E-mail:
Click here to e-mail me
AIM:
AIM  NA
MSN:
MSN  NA
Website URL:
Website URL  http://figmint.zzl.org

Users Experience

Experience:
Intermediate
Area of Expertise:
Designer/Coder

Latest Visitors

Topics I've Started

  1. iPad compatibility? iFrame being cut off.

    14 October 2011 - 10:08 PM

    Hello! I made a layout, and it looks fine on all the regular browsers, but I discovered that it's got a little glitch on the iPad. I don't have any experience with iPad compatibility, so if any of you do, that'd be quite helpful.

    You can see the layout here:
    http://ipswichschools.org/

    Basically, on the iPad, the lower half of the middle nav is missing. It is an iframe, and changing that fact is not really an option.

    All help is appreciated! Thanks. ^^
  2. Help with iframes in IE7!

    27 June 2011 - 09:55 PM

    I recoded part of this website: http://ipswichschools.org with iframes, and it apparently doesn't work in IE7. The oldest version of IE I can get is IE8, so I can't see what's going wrong. The new version of the site uses iframes and I think that's the problem.
    Does anyone here have experience with iframes and IE7? All help is appreciated!

    This website has a good bit of traffic, so I need to fix it as soon as possible.
  3. Iframes not updating & possible cache problem. Help!

    21 June 2011 - 10:44 AM

    I recoded my school's website, and part of what I did was putting the sidebar links in iframes, so the people who update the site only have to change one file to update all the sidebars. The problem is that when people view a page with a newly edited iframe embedded in it, it does not update, at least right away. I've had to right click on the iframe, open it in a new tab, and refresh that separately to get the sidebar to update.
    As the website is going to be used by a bunch of un-tech-savvy laymen, I really the iframes to update right away. Is there anything that can be done?

    I originally wanted to use php includes, but all the files have to remain .html.


    ALSO. I switched out the old files with the new, but I think a lot of people have old versions of the site cache, so when they go from the homepage they're having trouble with broken links. I would rather not tell the hundreds of people who use the site to empty their cache. What can I do?

    Thanks.
  4. PNG Resampling Program not working.

    23 February 2011 - 08:08 PM

    This program is supposed to take large pngs and resize them so their widths and heights are no larger than 700px.

    I wrote the same program for jpegs, and a similar one for pngs, but for some reason this particular program doesn't want to work. When I put in a large png (width and height are both over 700px), it'll output "The width is 3072 and the height is 2048," something like that, but it doesn't create or display the smaller image it's supposed to make.

    
    <?php
    
    $filename = '1.png';
    
    $sizearray = getimagesize($filename);
    $width = $sizearray[0];
    $height = $sizearray[1];
    echo "The width is $width and the height is $height. ";
    
    if ($width > $height && $width > 700)
    {
    $new_height = ($height * 700)/$width;
    $new_width = 700;
    }
    elseif ($width < $height && $height > 700)
    {
    $new_width = ($width * 700)/$height;
    $new_height = 700;
    }
    elseif ($width == $height && $width > 700)
    {
    $new_height = 700;
    $new_width = 700;
    }
    else{
    echo "No resizing needed";
    }
    
    $image_p = imagecreatetruecolor($new_width, $new_height);
    $image = imagecreatefrompng($filename);
    imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
    
    imagepng($image_p, "s4.png", 3);
    
    echo "<img src='s4.png'>";
    ?>
    
    

Friends

Comments

Frisby has no profile comments yet. Why not say hello?