Web Design Forum: deb0and - Viewing Profile - Web Design Forum

Jump to content

WDF
WDF Premium Memberships Reseller Hosting

deb0and's Profile User Rating: -----

Reputation: 0 Neutral
Group:
Members
Active Posts:
46 (0.03 per day)
Joined:
10-October 07
Profile Views:
2,143
Last Active:
User is offline Nov 18 2011 03:37 PM
Currently:
Offline

My Information

Member Title:
Forum Newcomer
Age:
Age Unknown
Birthday:
Birthday Unknown
Gender:
Not Telling Not Telling

Contact Information

E-mail:
Private

Users Experience

Experience:
Nothing
Area of Expertise:
Designer

Topics I've Started

  1. How do I align lists side by side equally accross the page

    18 November 2011 - 10:34 AM

    Hello,

    I am struggling to get my 3 lists aligned equally accross the page.

    I have created a class(square) and then wrapped each ul in a div, however this is not giving me my desired results.

    here is my css code
    #container
    {
    	margin: 0 auto;
    	width: 750px;
    	background:#fff;
    }
    
    
    
    #footer
    {
    	background:#white;
    	text-align: center;
    	padding: 20px;
    	height: 1%;
    }
    .square {
     float:left;
     width:210px;
    margin: 0 10px 10px 30px;
    } 
    

    the html that corresponds to the lists is below also

    		<div class="square"> 
    	<ul>
    	<li>1</li>
    	<li>1</li>
    	<li>1</li>
    	<li>1</li>
    	<li>1</li>
    	</ul>
    <img src= "download_button.gif" />
    </div>
    <div class="square">
    	<ul>
    	<li>1</li>
    	<li>1</li>
    	<li>1</li>
    	<li>1</li>
    	<li>1</li>
    	</ul>
    	
    <img src= "download_button.gif" />
    </div>
    
    <div class="square">
    	<ul>
    	<li>1</li>
    	<li>1</li>
    	<li>1</li>
    	<li>1</li>
    	<li>1</li>
    	</ul>
    <img src= "download_button.gif" />
    
    </div>
    
  2. run an exe file server side?

    12 July 2011 - 05:29 PM

    Hello

    I am wondering If i can run an exe file server side when a page is loaded, so for example the file loads when someone navigates to that page.

    This would be for iis5 in the wwwroot folder.

    ASP or php ideas welcome, not sure how to go about it.