Jump to content

Recommended Posts

Posted

It is starting to take shape and looks much better now. However, If you don't mind a suggestion.

Logout and then click on the Pilot Center link. There is a link or two in there that you might wish to only show if logged in.

Posted

Ok I moved the pilot center Links to a must be logged in status. I agree it needed to be done that way Thanks for the suggestion. Let me know what else I can do. It has bee many years since I skinned or coded for PHP. ;D :P

Posted

I would recommend using a table.. simply because it is easy..

Please.. for the sake of your own sanity don't do it like i did. It was a pain to get sorted.

But, good luck :)

  • Administrators
Posted

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>

Posted

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 ;)

Posted

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

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...