Announcement

Collapse
No announcement yet.

Adding boxes to left/right of screen

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

    #16
    Originally posted by jont
    You will need to edit the Act_Primary.html template to add the new boxes and add some new CUSTMVAR's into Actinic

    Advanced | Custom Properties | add 2 new variables such as NEWBOXTITLE and NEWBOXTEXT - this allows your to specify the box title and the text accordingly
    Ok i did the above on this thread but don't understand the rest!! where do i find the code i need to change in Act_primary ?
    And how do i do this with out messing the whole thing up!

    Thanks for any help

    Comment


      #17
      Ok, so i have done part of #3 basically
      "Advanced | Custom Properties | add 2 new variables such as NEWBOXTITLE and NEWBOXTEXT - this allows your to specify the box title and the text accordingly"

      But the rest is eluding me! is the part i need to copy in template manager? if so where abouts and what would it look like?

      Just need a little help here

      Comment


        #18
        You will need to edit the main 3 primary templates you are using ... Design | Options | Layouts and click the edit buttons.

        The table in the code will look something like

        Code:
        <table width="150" border="0" cellspacing="0" cellpadding="0">
                <tr> 
                  <td height="22" bgcolor="#000066" class="actsmallheading"><b>&nbsp;&nbsp;CUSTOMVAR:LEFTBARTITLE</b></td>
                </tr>
                <tr valign="top"> 
                  <td class="thinred2">
                     <table width="100%" border="0" cellpadding="2" cellspacing="2" class="actxxsmall">
                       <tr> 
                        <td valign="top"><br>CUSTOMVAR:LEFTBARTEXT<br><br></td>
                       </tr>
                     </table>
                  </td>
                </tr>
              </table>
        if you search for the CUSTOMVAR:LEFTBARTITLE that is the quicket way to spot on the page ..... ensure you pick up the containing <table> all the code is placed into


        Bikster
        SellerDeck Designs and Responsive Themes

        Comment


          #19
          The main templates are usually :

          Act_Primary.html
          Act_PrimaryCheckout.html
          Act_BrochurePrimary.html

          these are all found in the root of the site1 folder


          Bikster
          SellerDeck Designs and Responsive Themes

          Comment


            #20
            excellant found it, is there only one table? or are there others, and where do i actually copy it to? can i copy it to just below?

            Comment


              #21
              There should be 2 on the page .. LEFTand RIGHT

              You can copy it anywhere you like but the best / sensible place is above or beneath the exisiting boxes to keep together.

              You can paste it as many times as you like so long as you give each a unique CUSTOMVAR for the title and content otherwise it will replicate itself


              Bikster
              SellerDeck Designs and Responsive Themes

              Comment


                #22
                If copying beneath try adding a <br /> just before you insert the new code to force the table onto its own line.

                Take a backup of the template before doing any mods


                Bikster
                SellerDeck Designs and Responsive Themes

                Comment


                  #23
                  Excellant that worked a treat, but how do i change the colour of the text in the new box?

                  Comment


                    #24
                    Oh, and while we are at it, how do i get the links to to go down the box rather than across?

                    I.e. Features
                    News

                    Rather than: Features News

                    Comment


                      #25
                      Originally posted by silky
                      Oh, and while we are at it, how do i get the links to to go down the box rather than across?

                      I.e. Features
                      News

                      Rather than: Features News
                      add a line break at the end of the line eg <br /> to force a new line


                      Bikster
                      SellerDeck Designs and Responsive Themes

                      Comment


                        #26
                        Originally posted by silky
                        Excellant that worked a treat, but how do i change the colour of the text in the new box?
                        you can add another class to the actinic.css and specify accordingly eg:

                        .myBOXcolour td, tr {
                        color: red;
                        }

                        and in the above code use <table class="myBOXcolour" ..... >

                        You an also <span class="myBOXcolour">Isolated Text Changes</span> is you want to just format a certain part of the sentence.

                        If you are using hyperlinks you will need to also format the a:link, a:visited, a:hover and a:active attributes also


                        Bikster
                        SellerDeck Designs and Responsive Themes

                        Comment


                          #27
                          Jont, you are a legend! thank you so much! one last thing though can i add a banner of a link to these boxes? i.e. Paypal payment images etc and other images to point the customer to that section?

                          Comment


                            #28
                            Yep - just use the standard image code eg:

                            Code:
                            <img src="paypal.gif" alt="PayPal logo" title="PayPal logo" />


                            Bikster
                            SellerDeck Designs and Responsive Themes

                            Comment


                              #29
                              Hi, ok i tried coping the above code into Design|Options| and into the box i wanted the logo to appear in, but there is no logo! do i need to copy thins off the paypal site and where do i put it on the "site 1 " logo so that it gets found?

                              Comment


                                #30
                                You obvisouly need a copy of the logo on your hard disk (the root of the folder is the best place for it) and rename the image path accordingly to the name of the logo.

                                You can hot link direct to the image on the paypal site but that is considered bad practice and they could change the image location / name and you are left with nothing or they may have a server rewrite in place to prevent hot linking and replace the stolen image with a "stolen from Paypal" image ... or worse!


                                Bikster
                                SellerDeck Designs and Responsive Themes

                                Comment

                                Working...
                                X