Announcement

Collapse
No announcement yet.

4 Columns in DeepFooter ?

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

    4 Columns in DeepFooter ?

    I'm trying to get 4 columns in my deepfooter rather than the standard 3 but I can't see anywhere to set this in Sellerdeck nor anywhere obvious in the CSS either.

    I can easily create the HTML I want by copying the FooterColMid Div and code but all that happens is that the fourth column ends up wrapped down under the first one.

    I've searched the forum, Sellerdeck settings and the CSS but without any success.

    All I want is 4 columns to cover:

    About Us Customer Info Help & Advice Contact Us

    Help! Does anyone know how to do this? It's beyond me.

    Mike
    -----------------------------------------

    First Tackle - Fly Fishing and Game Angling

    -----------------------------------------

    #2
    I duplicated the <div class="footerColMid"> ... </div> to add in an extra middle column.

    Then look in Responsive CSS for:
    Code:
    div[class^="footerCol"] {
    	float:left;
    	margin:1%;
    	-webkit-flex:0 0 31%;
    	-moz-flex:0 0 31%;
    	flex:0 0 31%;
    	/* Start of IE Flex box */
    	-ms-flex-grow:0;
    	-ms-flex-shrink:0;
    	-ms-flex-basis:31%;
    	width:31%;
    	/* End of IE Flex box */
    }
    Try changing all these 31's to 23.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Works like a dream. Thanks Norman.

      I had started searching the library as you suggested previously and 'footercol' was the next item on the list so I like to think I might have found it eventually.

      Much appreciated though. It's saved me lots of time and frustration.

      Mike
      -----------------------------------------

      First Tackle - Fly Fishing and Game Angling

      -----------------------------------------

      Comment

      Working...
      X