• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Recent content by Tabris_Zero

  1. T

    Problems with CSS and IE6

    Also, if you haven't done so already, use the browser version detection script to load an IE6 only css.
  2. T

    Can't seem to find the problem. (CSS)

    Try tossing a "display: block" in your #container; you can probably change min-height to just height.
  3. T

    Flash & XML

    http://blog.greensock.com/xmlparseras2/ Here's the Actionscript XML parser I use. You can make it so if the first address doesn't load anything, it'll load another XML, but it'll be easier to output an error message to Flash.
  4. T

    Zen Cart - Please help!

    http://tutorials.zen-cart.com/index.php?article=107 Basically, upload everything, go to the address and it'll automatically start the process. You'll also need a MySQL database already setup. Check with your hosting company; some of them offer one-click installs which is much faster.
  5. T

    header image position

    There's the problem. Make it margin-top: 0px;
  6. T

    CSS aligning help

    Try this change: #logo { margin: 0px auto; width: <ACTUAL WIDTH OF IMAGE>; } 1) border-top: 1px 1px 1px 1px solid #33CCCC; is incorrect; border: 1px solid #33CCCC will apply a border around the whole DIV 2) Footer image won't display properly because you're using a PNG on IE6...
  7. T

    flash question

    It should be relatively easy if you already know programming languages. PHP will take care of the directory reading which you can pass into Flash. The paramters for the images' position and name can be retrieved by Flash and pushed back into PHP. www.gotapi.com www.kirupa.com Those are...
  8. T

    uploading images with php

    Is the filepath for the <IMG> tag correct with respect to the file? That's the only problem area I can think of if the image is correct on the db and server.
  9. T

    anyone good at flash?

    You're using AS3, the tutorial is for AS2. Just change it in your settings and you should be all set.
  10. T

    Multiple hyperlinks within a SWF???

    If you have a movieclip on each section that the user can click on, then use the following code in your Actions layer: <movieclip>.onRelease = function() { getURL("<URL>", "_blank"); } and just change the URL for each frame to go to a different link (assuming you're using frames)
  11. T

    Major CSS Help Please

    Try using floats for the left and right div's to align them properly. I'm not sure what you mean at certain points however. What do you mean by 100% height (unless you fixed it already)? Also, is the body background image just supposed to be a small dot? Keep in mind that IE6 and below...
  12. T

    Best program for complete web design w/FTP

    Another recommendation for Dreamweaver. Just having the program auto close tags for you, preserve links when you move files around and the template feature really steamline work with it. I also use a standalone FTP, FireFTP, a Firefox plug-in for those times you don't want to open up...
  13. T

    Repeated / Redefined div id's

    Repeated div IDs does not affect the page output, it's just proper practice to use id/classes. One problem would be now that you know the proper way, that making extra additions to the site might be confusing with regards to the syntax.
  14. T

    Website not the correct width

    <table cellspacing=0 cellpadding=0 width="723" style="width: 723px; margin: 0px auto"> It's a messy fix, but try that.
Back
Top