Announcement

Collapse
No announcement yet.

Layout 12 - Fixed Width Bug Breaking Layout

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Layout 12 - Fixed Width Bug Breaking Layout

    Hi

    I'm developing a website that uses Layout 12, that incorporates a design I have created. The problem I'm currently encountering is that despite setting the default width in design options and product_body to 470 for the main content area. The centre content area appears larger! and is pushing the right col far right.

    To view a screen grab click the link below, you'll notice I have highlighted how big the area by using the mouse to show the below square showing the size the main content area is using.

    http://www.mediamole.net/vbug.jpg

    Can anybody spot my mistake? Have I overlooked a default width somewhere in Actinic?

    #2
    Hi,

    Checked and the width can only be fixed if you make the change in Act_Primary.html,

    Look for <!-- coupon entry ends -->

    You should see this bit right below..
    <!-- coupon entry ends -->

    </td>
    <td valign="top">
    <TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0" WIDTH="CUSTOMVAR:ACTSTDWIDTH" ALIGN="CENTER">
    Insert the width into the opening cell which contains the table to fix the size. This wuld mean <td valign="top"> would read something like <td valign="top" width="470"> .

    Kind regards,
    Bruce King
    SellerDeck

    Comment

    Working...
    X