Jump to content

New VA Skin


llju1

Recommended Posts

  • Administrators

Tables work well but if you wanted to just use css you could do something like this for the columns on a 980px wide page ->

.main-left {
display:inline /*Fix IE floating margin bug*/;
float:left; 
          width:180px;
overflow:visible !important /*Firefox*/;
overflow:hidden /*IE6*/;
}

.main-center {
display:inline; /*Fix IE floating margin bug*/;
float:left;
width:590px;
margin:0 0 0 10px;
overflow:visible !important /*Firefox*/;
overflow:hidden /*IE6*/;
}

.main-right {
display:inline /*Fix IE floating margin bug*/;
float:right;
width:180px;
margin:0 10px 0 0;
overflow:visible !important /*Firefox*/;
overflow:hidden /*IE6*/;
}

And then your page would layout like ->

<div class="main-left">
   left column content
</div>

<div class="main-center">
   center content
</div>

<div class="main-right">
right column content
</div>

Link to comment
Share on other sites

Looking gooood

The alignment is a bit off though, and the borders don't look right to me.. but that's personal preference

Also:

copyright © 1997 - 2009

VMAC-VirtualMilitary Airlift Command

owned by

Lloyd and Judy Mendenhall,Grant Smith

copyright © 2007 - 2009

You only need copyright once ;)

Link to comment
Share on other sites

Got it  ;D

the code was there Just had to move it under this line to display

<li><?php echo $award->name ?></li>

Like this:

<li><?php echo $award->name ?></li>
				   <img src="<?php echo $award->image?>" alt="<?php echo $award->descrip?>" />

Thanks everyone for help with all my questions. I now have my site looking the way I like it. ::):D

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...