Toadill's Profile User Rating: -----

Reputation: 40 Craftsman
Group:
Active Members
Active Posts:
346 (0.7 per day)
Joined:
08-January 12
Profile Views:
5,656
Last Active:
User is offline May 14 2013 06:01 PM
Currently:
Offline

Previous Fields

Country:
US
OS Preference:
Windows
Favorite Browser:
FireFox
Favorite Processor:
Who Cares
Favorite Gaming Platform:
PC
Your Car:
Ford
Dream Kudos:
0

Latest Visitors

Icon   Toadill Pending.........

Posts I've Made

  1. In Topic: Game programming tattoo

    Posted 14 May 2013

    View Postmodi123_1, on 18 March 2013 - 10:14 AM, said:

    Interesting.. you went the tribal dragon route. A large departure from game programming tatts...

    Though I think you should have gone the 'red dragon' route.. but cest la vie.
    Spoiler


    Lmao

    :bigsmile:
  2. In Topic: Website alignment help

    Posted 14 May 2013

    Here is another example that should let you put images side by side and resizes like you wanted

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <title>Adjust Photo on Browser Window</title>
    <meta charset="utf-8">
    <script src="http://code.jquery.com/jquery-latest.js"></script>
    <script src="jquery-photo-resize.js"></script>
    <script type="text/javascript" charset="utf-8">
    $(document).ready(function() {
    $("img").photoResize({
    bottomSpacing: 15
    });
    });
    </script>
    <style type="text/css" media="screen">
    body { text-align: center; }
    </style>
    </head>
    <body>
    <img src="http://farm4.staticflickr.com/3480/3782576547_efbeb4fc3a_z.jpg?zz=1" alt="">
    </body>
    </html>
    
    


    Here is a link for you
    http://css-tricks.co...ckground-image/
  3. In Topic: Website alignment help

    Posted 14 May 2013

    Here I just tested this it seems to be working correctly let me know.

    <!DOCTYPE html>
    
    <html>
    
    <head>
    
    <style>
    * 
    {
      padding: 0;
      margin: 0;
    }
    .fit 
    {
      max-width: 100%;
      max-height: 100%;
    }
    .center 
    {
      display: block;
      margin: auto;
    }
    
    </style>
    
    <script src="http://code.jquery.com/jquery-latest.js">
    </script>
    
    <script type="text/javascript" language="Javascript">
    
    function set_body_height()
    {  
    var wh = $(window).height();
        
    $('body').attr('style', 'height:' + wh + 'px;');
    
    }
    
    
    $(document).ready(function() 
    set_body_height();
    $(window).bind('resize', function() 
    { 
    set_body_height(); 
    }
    );
    }
    );
    
    </script>
    
    </head>
    
    <body>
    
    <img id="the_pic" class="center fit" src="DragonTattoo.jpg" >    
    
    </body>
    
    </html>
    
    
    
    
  4. In Topic: Website alignment help

    Posted 14 May 2013

    Here is the current best solution I have, I have found. The idea is to give a height to the image container so that the max-height works.

    <!DOCTYPE html>
    <html>
    <head>
    <style>
    * {
      padding: 0;
      margin: 0;
    }
    .fit {
      max-width: 100%;
      max-height: 100%;
    }
    .center {
      display: block;
      margin: auto;
    }
    </style>
    <script src="http://code.jquery.com/jquery-latest.js"></script>
    <script type="text/javascript" language="Javascript">
    function set_body_height()
    {
        var wh = $(window).height();
        $('body').attr('style', 'height:' + wh + 'px;');
    }
    $(document).ready(function() {
        set_body_height();
        $(window).bind('resize', function() { set_body_height(); });
    });
    </script>
    </head>
    <body>
    <img id="the_pic" class="center fit" src="pic.jpg" >    
    </body>
    </html>
    
    



    http://www.cssplay.c...background.html
    Here is a example page of how to do this

    Right click the page and view source.
  5. In Topic: Website alignment help

    Posted 14 May 2013

    Something like

     <style type="text/css">
    html, body {margin:0; padding:0; width:100%; height:100%; overflow:hidden; text-align:left;}
    
    


    This is using CSS style.
    If you are not using CSS try doing this.

    <body style="width:100%; height:100%;" bgcolor="#0" text="#ffffff">
    
    

My Information

Member Title:
D.I.C Regular
Age:
31 years old
Birthday:
October 2, 1981
Gender:
Location:
USA
Interests:
Technical/ Skills Summary

• Visual Basic.Net
• C#
• C++
• Visual Basic 6.0
• HTML
• ASP.NET
• DirectX 9, 10
• Open MP
• Boost
• UML
• Visio
• Object Oriented Programming
• UDK Engine
• SQL Server
• SQL Express
• Tortoise SVN
• Access 2010
• Windows O/S networking
• Microsoft Office
• Delphi 7
• Java
• RPG on the AS/400 Mainframe
Full Name:
James Leshko
Years Programming:
15
Programming Languages:
C++
C#
Visual Basic 6.0
RPG on the AS/400 mainframe
Learning Delphi 7

Contact Information

E-mail:
Click here to e-mail me
Website URL:
Website URL  http://evildzsmartcodez.t83.net/#/welcome/4542865755
Skype:
Skype  EvilD81
LinkedIn:
http://www.linkedin.com/profile/view?id=198295007&trk=tab_pro
Facebook:
http://www.facebook.com/profile.php?id=100000103325168

Comments

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