Announcement

Collapse
No announcement yet.

Removing Horizontal Dividers from fragments

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

    Removing Horizontal Dividers from fragments

    I have a web page which has three fragments and then the products list. How can you remove the Horizontal Dividers from the fragments but still keep them in the products ?

    I have been to the list layout settings for the fragment layout and under the settings off After Row i have changed the code to as follows :

    <!-- <td class="dotted_line_blue" colspan="<actinic:variable name="ProductColumnCount" />"><img src="theme_shim.gif" height="1" width="1" alt=" " /></td> -->

    but what I find is that all the dividers disappear and not just for the fragments. Any help will be appreciated. Thank you

    #2
    <!-- <td class="dotted_line_blue" colspan="<actinic:variable name="ProductColumnCount" />"><img src="theme_shim.gif" height="1" width="1" alt=" " /></td> -->
    Try replacing it with this

    <actinic:block if="%28%3cactinic%3avariable%20name%3d%22ProductType%22%20%2f%3e%20%3d%3d%202%29">
    <td class="dotted_line_blue" colspan="<actinic:variable name="ProductFirstRowColumnCount" />"><img src="theme_shim.gif" height="1" width="1" alt=" " /></td>
    </actinic:block>

    Comment


      #3
      Jonathan, Thanks for your response but it doesn't seem to work.

      Comment


        #4
        As you have discovered the list handles both fragments and products ... the trick therefore is to remove the code from the list and add it back into the top of the product layout ... use CSS rather than the existing method if you like (but not essential)


        Bikster
        SellerDeck Designs and Responsive Themes

        Comment


          #5
          list handles both fragments and products
          Forgot that - I've separated my product and fragment lists as per the AUG.

          Comment


            #6
            Originally posted by bentleybloke
            Forgot that
            I have to keep writing stuff down these days as a week later can not remember some obscure hack I implemented on the wrong side of midnight. Old age


            Bikster
            SellerDeck Designs and Responsive Themes

            Comment


              #7
              I find that I'm either Acti-fused, Acti-strated or Acti-about-to-chuck-laptop-in-bin

              Comment

              Working...
              X