Announcement

Collapse
No announcement yet.

Creating new store section in Silver theme?

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

    Creating new store section in Silver theme?

    Hey again people!

    Im looking to create a new section in the silver theme, where the standard 2 sections are on the left, how would i add a new section?

    #2
    Do you not actually mean 'sections' rather than another silver sidebar box like those containing products and technical data?

    What would you like to put in the box?
    Jonathan Chappell
    Website Designer
    SellerDeck Website Designer
    Actinic to SellerDeck upgrades
    Graphicz Limited - www.graphicz.co.uk

    Comment


      #3
      View source of:
      http://www.graphicz.eu.com/site1/
      should give you some clues. It is silver theme with different images.
      Jonathan Chappell
      Website Designer
      SellerDeck Website Designer
      Actinic to SellerDeck upgrades
      Graphicz Limited - www.graphicz.co.uk

      Comment


        #4
        I want to create another silver sidebar box like those containing products.

        Comment


          #5
          Code:
          <div class="silver-sidebar-list">
          		<div class="silver-sidebar-list-bottom">
          		<div class="silver-sidebar-list-top" id="silver-brochure-list">
          			<a class="cust" href="whatever.html"><h3 class="custtt">Blah de Blah</h3></a>
          			<div id="jcleft">
          						<div style="border-bottom:1px dotted; background:#fff;padding:2px 0;">
          		Heading
          		</div>
          			<p>
          				<div align="center">Image</div><br />
          			Description</p></div>
          			<div style="clear: both;"><img src="theme_shim.gif" height="1" alt="spacer"/></div>
          		</div>
          		</div>
          		</div>
          		<div class="silver-sidebar-list-separator"><img src="theme_shim.gif" height="10" alt="spacer"/></div>
          Code:
          a.cust, a.cust:hover {text-decoration: none;}
          h3.custtt {
          	color: <actinic:variable name="Palette2" />;
          	font-size: 14px;
          	font-weight: bold;
          	padding:5px;
          }
          #jcleft {
          	padding: 0 0 0 5px;
          	margin: 0 1px;
          	list-style: none;
          /*	background: url('silver-theme-section-list-gradient.jpg') repeat-x;*/
          	background-color: #FEF8FC;
          	border-top: dotted 1px #858585;
          	border-bottom: dotted 1px #858585;
          }
          Jonathan Chappell
          Website Designer
          SellerDeck Website Designer
          Actinic to SellerDeck upgrades
          Graphicz Limited - www.graphicz.co.uk

          Comment


            #6
            Is there no way of doing in Actinic interface? How would i add products to this section? Eek

            Comment


              #7
              If you want another products index just copy the one you've already got. you will need to create a variable at section level 'ShowInBottomList' and make it True/False Top value False.

              Wrap a BlockIf around your section link in the top box 'ShowInBottomList == False'

              And wrap a BlockIf around your section link in the bottom box 'ShowInBottomList == True'

              Thus you can select which product sections go in the top product list and which in the bottom.
              Jonathan Chappell
              Website Designer
              SellerDeck Website Designer
              Actinic to SellerDeck upgrades
              Graphicz Limited - www.graphicz.co.uk

              Comment


                #8
                Originally posted by graphicz View Post
                If you want another products index just copy the one you've already got. you will need to create a variable at section level 'ShowInBottomList' and make it True/False Top value False.

                Wrap a BlockIf around your section link in the top box 'ShowInBottomList == False'

                And wrap a BlockIf around your section link in the bottom box 'ShowInBottomList == True'

                Thus you can select which product sections go in the top product list and which in the bottom.
                Sending you a PM.

                Comment

                Working...
                X