Viewing 5 replies - 1 through 5 (of 5 total)
  • Phil

    (@owendevelopment)

    Remove width:auto from your stylesheet (line 1209):

    table {
        border-collapse: collapse;
        border-spacing: 0;
        margin: 0 0 20px;
        padding: 0;
        width: auto;
    }

    so finished should be:

    table {
        border-collapse: collapse;
        border-spacing: 0;
        margin: 0 0 20px;
        padding: 0;
    }

    The ‘auto’ setting will automatically fix it’s width to the internal size of the container, so by removing this, it is then kept at 100%.

    Thread Starter Ballyman

    (@ballyman)

    Thanks. Is that from the WPG2 stylesheet or the Gallery2 stylesheet or my WP Theme stylesheet?? I presume it’s style.css I am looking for?
    Sorry for the stupid questions – I’m not too well up on all of this 🙂

    Phil

    (@owendevelopment)

    It will be your general stylesheet.

    Thread Starter Ballyman

    (@ballyman)

    I found it!! Thanks a million for your help. My head was wrecked trying to figure it out!!

    Phil

    (@owendevelopment)

    No problem. Be sure to check other pages of the site to ensure it hasn’t messed anything else up.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Gallery2/WPG2 Page Width problems’ is closed to new replies.