Announcement

Collapse
No announcement yet.

Moving the top section list?

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

    Moving the top section list?

    Hi

    I would like to move the top section e.g.

    Artist Materials > Oil Colour > Bob Ross Artist Materials & Books > Bob Ross Accessories

    to the left of the page but can't for the life of me figure out how to do it. I've managed to get it to display the end link of page that is being shown by putting NETQUOTEVAR:PAGEHEADER in the space

    Bob Ross Accessories

    Here is the URL any help would be great
    http://www.theartshop.co.uk/acatalog...cessories.html

    Thanks
    James

    #2
    Untested, but you could try commenting out this code in Act_ProductBody.html
    Code:
    <A NAME="sectiontop">
    <DIV ALIGN="CENTER">
    NETQUOTEVAR:PARENTSECTIONSTOP
    </DIV>
    <!-- NETQUOTEVAR:TOPLEVELSECTIONSTOP -->
    NETQUOTEVAR:SECTIONLISTTOP
    NETQUOTEVAR:TOPSECTIONSEPARATOR
    NETQUOTEVAR:CARTERRORLISTXML
    </A>
    and place a copy of the same code (uncommented) in 'the space'.
    Bill
    www.egyptianwonders.co.uk
    Text directoryWorldwide Actinic(TM) shops
    BC Ness Solutions Support services, custom software
    Registered Microsoft™ Partner (ISV)
    VoIP UK: 0131 208 0605
    Located: Alexandria, EGYPT

    Comment


      #3
      Hi

      Thanks for the help and I now have a "left section" however how do I edit the size of the font and create a break inbetween each section e.g.

      Artist Materials
      > Oil Colour
      > Bob Ross Artist Materials & Books


      http://www.theartshop.co.uk/acatalog...cessories.html

      Thanks
      James

      Comment


        #4
        Reducing the size of the font need a <span class="actxsmall"> before the code and a </span> after it - if actxsmall is not small enough, try actxxsmall.
        getting a > to show, just needs one added into the code, though you might be better off using > (the escaped code for the same character).
        Bill
        www.egyptianwonders.co.uk
        Text directoryWorldwide Actinic(TM) shops
        BC Ness Solutions Support services, custom software
        Registered Microsoft™ Partner (ISV)
        VoIP UK: 0131 208 0605
        Located: Alexandria, EGYPT

        Comment


          #5
          Hi

          Im sure I'm being a bit thick but it doesn't seem to have done anything?

          <span class="actxxsmall"><A NAME="sectiontop">

          <DIV ALIGN="Left">
          NETQUOTEVAR:PARENTSECTIONSTOP
          </DIV>
          <!-- NETQUOTEVAR:TOPLEVELSECTIONSTOP -->
          NETQUOTEVAR:SECTIONLISTBOTTOM
          NETQUOTEVAR:TOPSECTIONSEPARATOR
          NETQUOTEVAR:CARTERRORLISTXML
          </A></span><br>

          Is this right?

          Thanks
          James

          Comment


            #6
            That's because the span tag is being superceded by the css settings on the <A> tag. Move the first span to after the <A> and the second one to just before the </A>
            Bill
            www.egyptianwonders.co.uk
            Text directoryWorldwide Actinic(TM) shops
            BC Ness Solutions Support services, custom software
            Registered Microsoft™ Partner (ISV)
            VoIP UK: 0131 208 0605
            Located: Alexandria, EGYPT

            Comment


              #7
              Still no joy, looks just the same-

              <A NAME="sectiontop"><span class="actxxsmall">

              <DIV ALIGN="Left">
              NETQUOTEVAR:PARENTSECTIONSTOP
              </DIV>
              <!-- NETQUOTEVAR:TOPLEVELSECTIONSTOP -->
              NETQUOTEVAR:SECTIONLISTBOTTOM
              NETQUOTEVAR:TOPSECTIONSEPARATOR
              NETQUOTEVAR:CARTERRORLISTXML
              </span></A>

              Is this right?

              Thanks
              James

              Comment


                #8
                James,

                Yes - what you did is done correctly, but when I look into it a bit more, I see that these NETQUOTEVARs are bringing in their own span tags which once again are superceding our efforts and are switching the font size back to actxsmall.

                This is a little frustrating - let's see if I can find a workaround, or if someone else chan chime in with some additional help.
                Bill
                www.egyptianwonders.co.uk
                Text directoryWorldwide Actinic(TM) shops
                BC Ness Solutions Support services, custom software
                Registered Microsoft™ Partner (ISV)
                VoIP UK: 0131 208 0605
                Located: Alexandria, EGYPT

                Comment


                  #9
                  The template for the links in the 'Parent Section List' come from Act_ParentSectionsLink.html

                  You will see this code:
                  Code:
                  <A HREF="NETQUOTEVAR:SECTIONLINK"><SPAN CLASS="actxsmall"><I><B>NETQUOTEVAR:SECTIONNAME</B></I></SPAN></A>
                  You can see the 'span' class in this template which you might want to edit/remove.

                  Also look at Act_ParentSectionsThis.html (which is used for the name of the current section in the list:
                  Code:
                  <SPAN CLASS="actxsmall"><B>NETQUOTEVAR:SECTIONNAME</B></SPAN>
                  Hope that helps.

                  Comment

                  Working...
                  X