Page 1 of 1

Awesome Orange and shipping options layout.

PostPosted: Wed Apr 07, 2010 8:56 am
by arta!!ack
Hi.

I am using Awesome Orange for my shopping cart, but cannot find a way to get the shipping options to line up.

The options including radio buttons are all centered, again I have spent quite a few hours trying to find the solution before posting, but cannot find the css code that controls this part of the layout.

If someone could point me in the right direction that would be great.

If you need to see it just add to cart http://www.actioncity.co.uk/index.html

Arthur.

PostPosted: Wed Apr 07, 2010 9:57 am
by loren_d_c
If you view the source of the page you will see that the table and table cells have a class assigned of 'taxnship'. At the top of the page in the CSS sections this class is defined like this:

Code: Select all
    /* Tax calculations */
  table.taxnship {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: transparent;
  }

  td.taxnship {
    text-align: center;
    background-color: transparent;
  }


Most of the CSS in the default templates comes from template Include files, and in this particular case I believe it is in the awesome_orange_001_sc_styles.css Include file.

-Loren

PostPosted: Thu Apr 08, 2010 12:53 am
by arta!!ack
Thanks Loren. that's great, now sorted, I would never have found it.

I did have to change from the original css

Code: Select all
 td.taxnship {
    text-align: [-- VAR.button_text_align --];
    background-color: transparent;
  }


to

Code: Select all
td.taxnship {
    text-align: left;
    background-color: transparent;
  }


I could not find where the value for [-- VAR.button_text_align --] was being stored, but I suspect if I changed that it would move other things around.

PostPosted: Thu Apr 08, 2010 6:53 am
by Jim
The VAR.button_text_align is defined in the following include files
awesome_blue_001_xx_vars.sst
awesome_orange_001_xx_vars.sst

Where the xx can be sc, se, cr, pa, pr, gc standing for the type of template the file is included in i.e. shopping cart, search, customer registration, page, product and gift certificate. In all cases the default value is center.

PostPosted: Thu Apr 08, 2010 7:58 am
by arta!!ack
Thanks Loren and Jim.

Arthur.