Centering tables in IE7

I'm a volunteer for a school foundation site, and am trying
to redesign the site for them. I got some good help on the opening
page here the other day, but now am stuck on another page:
http://canyoncrestfoundation.org/donorlist.html
It looks great in Safari, Firefox, and older versions of IE,
at least the one or two that I have available, but in IE 7, all the
tables are smooshed against the left side of the screen. Can anyone
help me fix this?
Actually I'll sneak in one other question here. I would like
to have the links on the whole site be red, as they are now. But
I'd really like to have the background of the menu be black, as it
is here:
http://canyoncrestfoundation.org/newpage2.html
But some people can't see the red against the black. Is there
anyway to have the links on that menu only be white? I realize that
it's possible to do a fancier menu, or insert a commercial menu,
but right now I have too many other issues to deal with. Thanks

>tons of weird stuff
I had another look - there's two lots of META tags as well
(description and
keywords)
Jo
"Murray *ACE*" <[email protected]> wrote
in message
news:[email protected]...
> There's tons of weird stuff there.
>
> Three title tags.
>
> A background image link from hell -
>
> body {
> background-image: url(../../Library/Application
> Support/Macromedia/Dreamweaver
>
8/Configuration/ServerConnections/CCAF//htdocs/images/eostilework1f.gif);
>
> (weird, since the page is at the root of the site)
>
> But it's luckily reversed by another instance of that
style in the same
> rule -
>
> background-image: url(images/eostilework1f.gif);
> }
>
> As for the inner table, perhaps it's feeling constrained
by this outer
> <td>?
>
> <td width="284" align="left"
valign="middle"><div align="center">
> <h2 align="center"><img
src="images/librarystudent.jpg" alt="student
> with lots of books" width="217" height="144" vspace="15"
> align="middle"></h2>
> <h2 align="center">Canyon Crest Academy Foundation
Donors</h2>
> <h3 align="center">Legacy of Learning<br>
> ($10,000 and up)</h3>
> <div align="center">
> <table border="0" cellspacing="0" cellpadding="0">
>
> Remove the width="284" from that <td> and see if
that helps.
>
>
http://murraytestsite.com/donorlist.html
>
> --
> Murray --- ICQ 71997575
> Adobe Community Expert
> (If you *MUST* email me, don't LAUGH when you do so!)
> ==================
>
http://www.dreamweavermx-templates.com
- Template Triage!
>
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
>
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
>
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
> ==================
>
>
> "josie1one" <joleros[nospam]@yahoo.com> wrote in
message
> news:[email protected]...
>> For your second question, you'll need to use some
CSS. Here are some good
>> links:
>>
>>
http://www.mako4css.com/BasLink.htm
>>
http://thepattysite.com/linkstyles3.cfm
>>
http://www.projectseven.com/tutorials/css/pseudoclasses/
>>
>>
>> --
>> Jo
>>
>>
>> "josie1one" <joleros[nospam]@yahoo.com> wrote
in message
>> news:[email protected]...
>>>I haven't looked at it in IE7 yet, but I had a
look at possible reasons.
>>> You have a blank space above your DOCTYPE which
should be removed and
>>> you have a second instance of
<TITLE></TITLE>
>>> Fix those and see if this helps, if not, post
back
>>>
>>> --
>>> Jo
>>>
>>>
>>> "Sootica" <[email protected]>
wrote in message
>>> news:[email protected]...
>>>> I'm a volunteer for a school foundation
site, and am trying to redesign
>>>> the
>>>> site for them. I got some good help on the
opening page here the other
>>>> day, but
>>>> now am stuck on another page:
>>>>
http://canyoncrestfoundation.org/donorlist.html
>>>>
>>>> It looks great in Safari, Firefox, and older
versions of IE, at least
>>>> the one
>>>> or two that I have available, but in IE 7,
all the tables are smooshed
>>>> against
>>>> the left side of the screen. Can anyone help
me fix this?
>>>>
>>>> Actually I'll sneak in one other question
here. I would like to have
>>>> the links
>>>> on the whole site be red, as they are now.
But I'd really like to have
>>>> the
>>>> background of the menu be black, as it is
here:
>>>>
http://canyoncrestfoundation.org/newpage2.html
>>>> But some people can't see the red against
the black. Is there anyway to
>>>> have
>>>> the links on that menu only be white? I
realize that it's possible to
>>>> do a
>>>> fancier menu, or insert a commercial menu,
but right now I have too
>>>> many other
>>>> issues to deal with. Thanks
>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>

Similar Messages

  • CSS Centering tables

    Hi,
    I am trying to get more involved in CSS. I am using
    Dreamweaver CSS interface for the most part as I do not know CSS
    code well enough yet.
    I want everything centered on the page .. so .....
    I have a main table which is 100% wide and text alignment
    that is centered.
    In that table I first have an image as a header which centers
    properly.
    Below that I want to have a table the same width of the image
    that is also centered.
    That table will contain some content.
    Why is it I cannot center that table under the image. It
    wants to stay to the left.
    Here is a link to page:
    http://www.thereserveatglenville.info/prototype.html
    Here is my CSS so far:
    ========================
    body {
    text-align:center;
    margin: 0px;
    background-color: #b4bbc0;
    padding: 0px;
    table#Main-Table {
    margin-left:auto;
    margin-right:auto;
    width: 100%;
    text-align: center;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    vertical-align: top;
    table#Content-Table {
    width: 756px;
    margin: 0px;
    padding: 0px;
    border: 1px solid #59636A;
    =====================================
    Thanks!!!
    Paul

    Hello,
    It centers in IE, but to get it to center in FF,
    Change this:
    <table id="Content-Table">To this:
    <table align="center" cellpadding="0" cellspacing="0"
    border="0"
    id="Content-Table">
    Take care,
    Tim
    P.F." <[email protected]> wrote in message
    news:fonb5m$dck$[email protected]..
    > Hi,
    >
    > I am trying to get more involved in CSS. I am using
    Dreamweaver CSS
    > interface
    > for the most part as I do not know CSS code well enough
    yet.
    >
    > I want everything centered on the page .. so .....
    > I have a main table which is 100% wide and text
    alignment that is
    > centered.
    > In that table I first have an image as a header which
    centers properly.
    > Below that I want to have a table the same width of the
    image that is also
    > centered.
    > That table will contain some content.
    > Why is it I cannot center that table under the image. It
    wants to stay to
    > the
    > left.
    >
    > Here is a link to page:
    >
    http://www.thereserveatglenville.info/prototype.html
    >
    > Here is my CSS so far:
    >
    > ========================
    >
    > body {
    > text-align:center;
    > margin: 0px;
    > background-color: #b4bbc0;
    > padding: 0px;
    > }
    >
    > table#Main-Table {
    > margin-left:auto;
    > margin-right:auto;
    > width: 100%;
    > text-align: center;
    > border-top-width: 0px;
    > border-right-width: 0px;
    > border-bottom-width: 0px;
    > border-left-width: 0px;
    > vertical-align: top;
    > }
    >
    > table#Content-Table {
    > width: 756px;
    > margin: 0px;
    > padding: 0px;
    > border: 1px solid #59636A;
    > }
    >
    > =====================================
    >
    > Thanks!!!
    > Paul
    >
    >

  • Centering Table withing a form

    I'm using a table to create my form input fields.  I'd like the table to be centered on the page rather than the default left justified.  The Format>Align>Center command does not work.  Any ideas on what I can do to center the table within a form?  Thanks.  Mark Reynolds

    The answer may depend on other code you have on the page, but presuming that your table can be 600px wide, try the following CSS -
    table {
         width:600px;
         margin:0 auto;
    Note that this will affect ALL tables on the page.  If you have more than just this one table, then add an ID to that table and to the selector, e.g.,
    table#form {
         width:600px;
         margin: 0 auto;
    <table id="form"...

  • Centering table cell content in panel grid

    How can I center the content of the cells in a table grid so it would end up something like this:
    <table>
    <tr>
    <td align="center">

    You can do that using stylesheet. You can look at the
    repeater demo example for ideas. The corresponding
    stylesheet class is components/web/stylesheet.css .
    Hope this helps.
    -JayashriI think we need more powerfull layout oriented components.
    XAML, XUL, ADF all of them have powerfull layout components library.
    Maybe it's time start working in this direction.
    I'm sure that JSF must provide in near future more powerfull layout related components library, no doubt here!
    After that it will be possible to remove from styles classes and jsp code everything that was used for layout.
    Layout components will take care about align components, preferred size and etc.
    We need minimize number of style classes.
    That possible if you will make them more universal.
    But no way to make universal style classes with layout related attributes inside them.
    Take a look on simple layout case:
    <s:row align="opposite" styleClass="footerPage">
         <h:outputText value="#{bundle.copyright}"/>
         <h:outputText value="#{bundle.terms}"/>
    </s:row>
    public class RowRenderer extends HtmlBasicRenderer {
    public RowRenderer() {
    super();
    public boolean getRendersChildren() {
    return true;
    public void encodeBegin(FacesContext context, UIComponent component) throws IOException {
    if (!component.isRendered())
    return;
    ResponseWriter writer = context.getResponseWriter();
    writer.startElement("div", component);
    writeIdAttributeIfNecessary(context, writer, component);
    String styleClass = (String) component.getAttributes().get("styleClass");
    if (styleClass != null) {
    writer.writeAttribute("class", styleClass, "styleClass");
    Util.renderPassThruAttributes(writer, component);
    public void encodeChildren(FacesContext context, UIComponent component) throws IOException {
    if (!component.isRendered())
    return;
    Iterator kids = null;
    String style = null;
    int i = 0;
    String align = (String) component.getAttributes().get("align");
    if (align == null) align = "start";
    if (null != (kids = getChildren(component))) {
    while (kids.hasNext()) {
    UIComponent child = (UIComponent) kids.next();
    if (!child.isRendered())continue;
    style = (String) child.getAttributes().get("style");
    style = (style != null) ? style + ";" : "";
    if ( (align == "start") || (align == "left"))
    style += "float: left;";
    else
    if ( (align == "end") || (align == "right"))
    style += "float: right;";
    else
    if (align == "opposite") {
    if ((i % 2) == 0)
    style += "float: left;";
    else
    style += "float: right;";
    child.getAttributes().put("style", style);
    encodeRecursive(context, child);
    i++;
    public void encodeEnd(FacesContext context, UIComponent component) throws IOException {
    if (context == null || component == null) {
    throw new NullPointerException(Util.getExceptionMessageString(
    Util.NULL_PARAMETERS_ERROR_MESSAGE_ID));
    if (!component.isRendered())
    return;
    ResponseWriter writer = context.getResponseWriter();
    writer.endElement("div");
    It's good idea in many layout situations to use tableless layout.
    Row component just simple demonstration how it work.
    There are some problems with implementation and using tableless layout
    but at least in some cases it's good choise.
    I'm ready to provide plenty suggestions in area of creating and using layout components.
    Just don't know if you have interest to discuss that matter.
    Vladimir

  • Centering tables in subforms

    Hi,
    I'm trying to center a table that is in a subform. I select the table and go to Layout>Center in page, but horizontally and vertically is grayed out?
    Any ideas what I'm doing wrong?
    Thanks in advance!

    Hi,
    I think it may just be the way you are selecting the table.
    If you select the table right at the edge, then the eight anchor points are visible. The layout commands are avaiable to you.
    If you select the cells / rows / columns of the table instead (so that the table is coloured blue), then the commands will not be available.
    Hope that helps,
    Niall

  • Centering tables

    Is there a convenient way to center a table for printing so it isn't off center in Numbers 3.5?
    Thanks for any insight.

    Hi Doug,
    See this User Tip on creating a Layout Guide in Numbers 3:
    https://discussions.apple.com/docs/DOC-7101
    I find the Alignment Guides useful. Numbers > Preferences > Rulers > Tick every box.
    Regards,
    Ian.

  • Changing from tables to CSS

    OK, my mind is mush and I need a little help.
    Client shows me a website he looooooooves. The whole thing is tables! Uh oh!
    I have done a fair amount of the heavy lifting on this one and need some tweaks in the CSS. The entire gismo -- along with the old table-based website!!! is here. We're going on line with this pretty soon and the client is sending me content.
    The top of the page is the redesign, the bottom is all of the tables. As you can see, I have done <div> work on it so that it works. I don't need any more navigation than I have, so the left-hand side navigation is not needed. I would like the navigation that I do have to be centered on the red bar. I would also like to be pointed to a tutorial that will show me how to make Dreamweaver CS3 do pre-loaded images and swaps for the navigation bar, as I have bold versions of the text for navigation for mouseover and select.
    Despite the fact that I did tell the stylesheet that I want the centered table with the address, phone and hours of operation to be yellow, it's still white. I would also like a red outline that is about the same color as the red navigation: #A00000
    If you need the stylesheet, which is an amalgam of old and new, I can put it here.
    I would like to use this particular page as an example of how to go from tables to <div> with fixed width and will completely flesh it out sooner or later and offer it up to this Forum as an example of how you can get the best results on the modern Internet by converting from the 20th Century to the 21st.
    To reiterate:
    I need a tutorial on preloaded images and mouseover to change an image.
    I need to finish this gismo, styling the menu to the center and the location and hours of operation box in yellow with a red border.
    Thanks.

    Does it work when you look at the website?
    As it's styled in both Firefox (Mac) and Safari it does not work.
    Table is:
      <table align="center" class="hoursTable">
        <tr>
          <td><p align="center"><span class="style40">Public Market of Newington</span><br>
            437 New Britain Avenue<br>
            Newington, CT 06111<br>
          </p>
            <p align="center"> <span class="style40">Phone</span>:
              860&bull;667&bull;1454<br>
       <span class="style40">Fax: </span>860&bull;666&bull;DELI</p></td>
          <td><p align="center"><span class="style40">Hours of Operation</span><br>
                Mon - Sat: 8am - 6pm<BR>
                Sunday: 8am - 1pm</p>
            <p align="center" class="style40">GIFT CERTIFICATES AVAILABLE</p></td>
        </tr>
      </table>
    CSS is:
    .oneColFixCtrHdr #container #mainContent hoursTable {
    align: center;
    text-align: center;
    position: fixed;
    width: 603px;
    border: 1px solid red;
    background-color: yellow;

  • Can't format tables anymore in a CSS layout

    Why can't I insert a regular table, and be able to select a
    cell, row, column, whatever, and change the cell color like I did
    before CSS? If I have a DIV, I'm supposed to be able to insert
    regular html content inside it, right?
    I have a DIV with a red background color set. I insert a
    small table for some data, and the table punches a hole
    (figuratively speaking) in the red background. Okay, I try to color
    the table background cells red, and it doesn't matter. I then setup
    a style sheet (class) just for that one table, and give it a red
    background, and again, no go.
    I'm about ready to abandan CSS for layout, I really am. There
    are no declarations in my body tags or anywhere else that says what
    to do with a table.
    What do I have to do to be able to color cells and format a
    table like non-css pages? I have many legacy sites with charts and
    data in regular tables (I'm not talking about for layout, but for
    regular tabular data), and when I try to copy and paste these into
    a new page, the table and data comes, but all the coloring is gone.
    This seems very dumb. Any insights?

    > I have a DIV with a red background color set. I insert a
    small table for
    > some
    > data, and the table punches a hole (figuratively
    speaking) in the red
    > background. Okay, I try to color the table background
    cells red, and it
    > doesn't
    > matter. I then setup a style sheet (class) just for that
    one table, and
    > give it
    > a red background, and again, no go.
    Copy and paste the following into a new DW page - you will
    see that you can
    have coloured cells and or rows. At least that's what I
    believe you are
    trying to do.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    /*the outer div container */
    #test {
    background-color:#CC0000;
    width: 400px;
    margin: 0 auto;
    padding: 10px; /* to add a bit of padding between the div and
    the centered
    table */
    /*given the table an ID rather than a class - you can style
    as many tables
    as you like - giving each table a unique ID */
    #tableone {
    width: 350px;
    margin: 0 auto;
    border: 1px solid black; /*border added to define the outside
    of the table
    within the div */}
    #tableone td {padding: 4px; width: 50%; } /* padding within
    the cells */
    #tableone .yellowcell {background-color:#FFCC00;}
    #tableone .bluecell {background-color:#0000CC;}
    #tableone .whitecell {background-color:#FFFFFF;}
    #tableone .purplecell {background-color:#CC00FF;}
    #tableone .greyrow {background-color:#666666;}
    -->
    </style>
    </head>
    <body style="background-color:#CC9999">
    <div id="test">
    <table width=300px; border="0" cellpadding="0"
    cellspacing="0"
    id="tableone">
    <tr>
    <td class="yellowcell">1 coloured cells </td>
    <td class="purplecell">2</td>
    </tr>
    <tr>
    <td class="whitecell">3</td>
    <td class="bluecell">4</td>
    </tr>
    <tr class="greyrow">
    <td>5 colored row </td>
    <td>6</td>
    </tr>
    </table>
    </div>
    </body>
    </html>
    Nadia
    Adobe® Community Expert : Dreamweaver
    Tutorials |SEO |Templates
    http://www.DreamweaverResources.com
    http://www.perrelink.com.au
    CSS Tutorials for Dreamweaver
    http://www.adobe.com/devnet/dreamweaver/css.html

  • Table for cost center / activity type prices

    Can someone give me the table name where cost center/activity type prices are stored?
    Regards,
    Manohar

    hi,
    for cost centers
    table name  =  CSKSZ
    field name =  KOSTL
    Activity prices
    table name = RKPLN
    field name =  TKF
    HOPE IT HELPS
    regards
    sayeed

  • Table jumps to the left with long pages

    I am using Dreamweaver CS3 and it works fine. But when I
    paste long tekst (lyrics for an artist) the pages makes a small
    "jump" to the left just a 4 - 5 mm. I use centered tables. Does
    anyone have a solution to this problem?
    Best regards
    Karl Henrik

    You really only need this -
    html, body { min-height:100%; margin-bottom:1px; }
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "djinn" <[email protected]> wrote in
    message
    news:f9ccic$e5v$[email protected]..
    > karl.henrik wrote:
    >> Thanks for the fast reply :-)
    >>
    >> the url is:
    http://www.lpr.no/testweb/finnkalvik/index.html
    >>
    >> Click on Tekster (lyrics) in the menu and you can
    see what happends
    >> (both in Safari and Firefox)
    >>
    >> Best regards
    >> Karl Henrik
    >
    > Did you try the css rule I posted - I think you'll find
    that this solves
    > the problem (caused by the fact that some browsers
    reserve space for the
    > scrollbar whilst others don't)
    >
    > --
    > chin chin
    > Sinclair

  • Centering Background Image

    After countless hours of using the forums I finally am
    posting my first question.
    Is there a way to center the background image that is set
    through page properties? I have a centered table and it would be
    nice to have a continuous background.
    Any help would be appreciated.

    Or you could do what Murray just said :-) But through
    standard html, no.
    Lawrence Cramer
    *Adobe Community Expert* - Dreamweaver -
    http://tinyurl.com/jhnyq
    email: lawrence at cartweaver dot com
    Cartweaver CF, ASP & PHP Shopping Cart for Dreamweaver
    www.cartweaver.com
    news://support.cartweaver.com
    =====================================================
    "Lawrence *Adobe Community Expert*"
    <[email protected]> wrote in
    message news:emuj2u$636$[email protected]..
    > Nope, you can't center a page background image. You have
    to work from the
    > top left hand corner.
    >
    > Now you could create a fixed width, floating, centered
    "master container"
    > div and have a background image for this div. Then place
    all your
    > content in this container. This would give you the
    illusion of a centered
    > page background.
    >
    > Hope this helps.
    > --
    > Lawrence Cramer
    > *Adobe Community Expert* - Dreamweaver -
    http://tinyurl.com/jhnyq
    > email: lawrence at cartweaver dot com
    >
    > Cartweaver CF, ASP & PHP Shopping Cart for
    Dreamweaver
    > www.cartweaver.com
    > news://support.cartweaver.com
    > =====================================================
    >
    >
    > "cheesewagon" <[email protected]> wrote
    in message
    > news:emuhmn$4hv$[email protected]..
    >> After countless hours of using the forums I finally
    am posting my first
    >> question.
    >>
    >> Is there a way to center the background image that
    is set through page
    >> properties? I have a centered table and it would be
    nice to have a
    >> continuous
    >> background.
    >>
    >> Any help would be appreciated.
    >>
    >>
    >
    >

  • How to get header to stay centered on different browser window sizes

    Hi,
    Is there a way to change the header design so it stays
    centered and moves to accommodate different browser window sizes?
    Right now, it stays where it is, and everything else moves and
    stays centered as window size changes. I'm a new Dreamweaver user.
    the url is
    http://ellifolks.com/
    I tried changing the template I made for the site, and was
    able to delete some things, but it won't let me add things now. I
    can't undo to where it started, either. I tried doing a second
    template. Now I can't save anything -- I get a message saying
    "sharing issues".
    Thank you.

    Combining absolutely positioned elements with centering
    tables (as you have)
    accounts for about 20% of the posts on this forum. It's
    commonly done
    because it seems so easy. This is one of the penalties you
    pay for taking
    that easy road.
    The answer to your question is yes, you can do this.
    1. Make this image the page background -
    http://ellifolks.com/images/ellifolks_web_header_repeat.gif
    - and use CSS to
    give it a style of background-repeat:repeat-x.
    2. Place your assembled header within a STATIC div (i.e., NOT
    a layer) at
    the top of the page by changing this -
    <div id="apDiv1"><img
    src="images/dots_header_left.gif" width="175"
    height="192" alt="dots left" /></div>
    <div id="apDiv2">
    <div align="center"><img
    src="images/header_animals_logo.gif" width="759"
    height="195" alt="ellifolks logo" /></div>
    </div>
    <div id="apDiv3"><img
    src="images/dots_header_right.gif" alt="dots right"
    width="175" height="192" /></div>
    to this -
    <div id="header"><img
    src="images/dots_header_left.gif" width="175"
    height="192" alt="dots left" /><img
    src="images/header_animals_logo.gif"
    width="759" height="195" alt="ellifolks logo" /><img
    src="images/dots_header_right.gif" alt="dots right"
    width="175" height="192"
    /></div>
    3. Add this to your CSS -
    #header { width:1109px; margin:0 auto; }
    That should do the trick.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "zinnia3" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi,
    >
    > Is there a way to change the header design so it stays
    centered and moves
    > to
    > accommodate different browser window sizes? Right now,
    it stays where it
    > is,
    > and everything else moves and stays centered as window
    size changes. I'm
    > a
    > new Dreamweaver user. the url is
    http://ellifolks.com/
    >
    > I tried changing the template I made for the site, and
    was able to delete
    > some
    > things, but it won't let me add things now. I can't undo
    to where it
    > started,
    > either. I tried doing a second template. Now I can't
    save anything -- I
    > get a
    > message saying "sharing issues".
    >
    > Thank you.
    >
    >

  • Need help lining up centered top & bottom frames

    Can anyone help, other than advising not to use frames...
    I don't use them as a rule, but need to for one project. I'm
    using 2 frames, top and bottom.. Dreamweaver 8. The width of the
    centered tables in both frames are the same, but shift when content
    is added. Is there any workaround or help that anyone can provide.
    This is urgent!!
    You will be my friend for life if you can provide any help!
    Thanks!

    html,body { height:100.1%; }
    will force a scrollbar on all pages....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "whirligirl" <[email protected]> wrote in
    message
    news:e71hru$9kf$[email protected]..
    > Janster, good questions, even if you're being facetious.
    Your point about
    > the
    > scrollbar is exactly it, I bet. Do you know how to fix
    that?
    >
    > I'm previewing in Safari and Netscape on a mac while
    working, but I
    > checked it
    > in IE on the pc and it didn't seem to have the shifting
    issue. Hmmm.
    >
    > If you have any solutions for the scrollbar issue, I'd
    love to hear it.
    > Thanks!
    >

  • Shaded table borders

    If you look at this page as an example,
    http://www.share.ca/, how do you
    get the shaded borders around the table? Is it something to do with
    the background color or with the table borders?
    Thanks.

    OK, I have fiddled with the image from the site I'm using as
    an example so I better understand now how it works. That image is
    700 wide. I'm still having trouble tho in Dreamweaver adding a
    repeated border to my centered table 700 wide so that the shaded
    borders are exactly on the edges of the table.
    Do I have to create my own image? If someone could help me
    out with the steps, that would be great. I think I've gone as far
    as I can in trying this.
    Thanks.

  • Select/Format All Headers in Tables

    I'm in the proof-reading process of a 40 page catalog with dozens of tables.  I've realized that some of the table headers are center-justified and some are not (not sure how that happened).  Is there a way for me to change all of the headers to center-justified in one swoop or do I have to select each one individually?

    Did you use styles? If you did, then the non-centered table headers are overrides. You should be able to change the style definition to accommodate the override, and then change it back. IOW, if your headers are supposed to be centered, but a few of them are left, change the style to left so that they're *all* left, and then change the style again so that they're *all* centered.
    Ken

Maybe you are looking for

  • Podcast Problems [Zen Tou

    A few weeks ago I discovered the CBC Radio 3 podcast (http://www.cbcradio3.com/podcast/about.html). The first few downloads have been going well, but now when I try to transfer the files, Media Source says "Error: Unable to download file. The file fo

  • Problems with zoom on photos

    I have just bought the ipod touch 5th generation. I have used the rear camera and zoomed in for the photo. However the photo taken by the camera is not the one shown on the screen. So for example I am taking a picture of the tree I zoom in on the lea

  • Settings Badge Still Appearing on Latest Version

    I had updated my iPhone 4S to iOS 6.1 awhile back but it has been ticking me off that there is still a badge marked with "1" on the Settings app. Is there a way to get rid of it? I mean I AM on the latest version. So I can't update to fix it.

  • Multiply vector

    I have a MATLAB code that I want to convert it to LabVIEW code, but I am stuck at the expression    a22=a11.';     pm(ii)=((a22')*a22)./((a22')*LL*a22); how can I implement this code in labVIEW?  Solved! Go to Solution. Attachments: MUSIC %28SubVI%29

  • Having problem with wireless connection

    Hello Everyone, Ok, just like what the title says.. I had a roomate before that had the acct. and moved out with his account. I used to share Internet service with him using a WRT54G router and everything was fine. Since he moved out I had to get my