Announcement

Collapse
No announcement yet.

Side bar problem

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

    Side bar problem

    Hi all
    I am very new to Actinic and web site building
    and I now my site is not that good yet. One problem has got me beat
    In the side bar best sellers and new products if I enter more than 4 objects
    The thin border disappears I hope you can help me
    Thanks in advance Garry
    http://www.jaytrade.co.uk/

    #2
    Hi Garry,

    The problem is caused because that sidebar box is using an image for the border. The best way to solve it is to use a css border. Try the following:

    - go to the 'Design' menu and select 'Library'
    - on the 'Layouts' tab expand the 'Web Page Outer Layouts' group (click the '+')
    - double-click on the 'Actinic Stylesheet' layout to open it
    - on line 243 you should see the following style:

    Code:
    .boxbody {
    	background: url('theme_curve3.gif') repeat-y bottom left;
    	margin: 0;
    	padding: 5px 10px 11px;
    }
    - replace it with:

    Code:
    .boxbody {
    	margin: 0;
    	padding: 5px 10px 11px;
    	border:1px solid <actinic:variable name="Palette2" />	
    }
    - click 'Apply' and then 'OK'
    - close the library and you should see that it works in the preview pane
    - update your site.
    ********************
    Tracey
    SellerDeck

    Comment


      #3
      Side Bar problem

      Thanks for your help,i will try this out later on today.
      Once again thank you.
      Garry

      Comment

      Working...
      X