PDA

View Full Version : Site Assist Professional


michaelf0199272
11-24-2009, 11:48 PM
I am using Site Assist Pro to set up my template. I did remove all the background images from the header.

I then inserted a 1x2 Table inside which I inserted two images as shown on the attached picture.

What I need help with is: I will like to align the TABLE top left. Of course the images reside inside the two columns on the TABLE.


All help that can make this happen will be appreciated.


Many thanks,

Michael

Eric Mittman
11-25-2009, 11:50 AM
Since the template that is created is based on CSS settings you should be using css yourself to get the images displaying properly. When you mix tables with css based layouts things can end up not looking the same in the various browsers and you will not have as much flexibility to customize the design.

You should use some divs and apply some css to the divs to have them display the images in these locations. You can use the default template as a guide to how you have the divs setup to display the images properly. If you have any trouble with this just let us know and we will be glad to help you out.

michaelf0199272
11-30-2009, 08:34 AM
You are right. I will remove the table and use CSS\<div></div> as you have suggested.

Many thanks,

Michael

Eric Mittman
11-30-2009, 04:20 PM
Let us know if you have any further problems with SiteAssist and we will be glad to help.

michaelf0199272
12-02-2009, 03:31 AM
Thanks Eric, needed modifications have been effected using CSS. Site seems to display as expected.

http://www.gbftacoma.org/


Michael

Eric Mittman
12-02-2009, 11:55 AM
It is looking pretty good, nice work. I noticed that your navigation did not go across the entire width. I was able to make it look ok in my browser by altering the width setting in this css style:

menu.css line 54

ul#cssmw_home > li > span > a {
background-image:url(../cssmw_home_images/center.jpg);
background-repeat:repeat-x;
color:#FFFFFF;
display:block;
font-family:Arial,Helvetica,sans-serif;
font-size:12px;
font-style:normal;
font-weight:bolder;
margin:0 8px;
padding:5px;
text-align:center;
text-decoration:none;
text-transform:uppercase;
width:108px; /* I updated this from 102 to 108, it seemed to make it fit a little better */
}