Announcement

Collapse
No announcement yet.

Three column section

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

    Three column section

    Sellerdeck 2014 Business Plus
    Version 14.0.3

    Hello
    I had 3 column's in section details with image on left and text wrapping around image. Worked well until I made some changes and now the whole site drops below the images. Any help please. Getting in a real mess trying to find the answer.

    Regards

    Phil Player
    www.pullmanfurniture.com

    #2
    Your section pages cannot currently be seen as you have your website set to login only. You could set up a test account for people to look. Which areas were you changing?.
    Peblaco

    Comment


      #3
      Originally posted by philplayer View Post
      Sellerdeck 2014 Business Plus
      Version 14.0.3

      Hello
      I had 3 column's in section details with image on left and text wrapping around image. Worked well until I made some changes and now the whole site drops below the images. Any help please. Getting in a real mess trying to find the answer.

      Regards

      Phil Player
      www.pullmanfurniture.com
      Is this a responsive site and do you have a link to it so we can see the problem

      Malcolm

      SellerDeck Accredited Partner,
      SellerDeck 2016 Extensions, and
      Custom Packages

      Comment


        #4
        Hello Malcolm
        login is dummy@pullmanfurniture.com. password is adenvmk
        1909 kitchens on right hand bar.
        Group 91
        Group 91 Index
        There is a small green image then text. They used to line up. All the sections have this problem. Don't know whether it is something I have done or whether its when I upgraded to 14.0.3

        http://pullmanfurniture.com/cgi-bin/...-91-Index.html

        Regards
        Phil Player

        Comment


          #5
          Hello Louise, I have sent this to Malcolm as well.

          login is dummy@pullmanfurniture.com. password is adenvmk
          1909 kitchens on right hand bar.
          Group 91
          Group 91 Index
          There is a small green image then text. They used to line up. All the sections have this problem. Don't know whether it is something I have done or whether its when I upgraded to 14.0.3

          http://pullmanfurniture.com/cgi-bin/...-91-Index.html

          Regards
          Phil Player

          Comment


            #6
            Originally posted by philplayer View Post
            Hello Malcolm
            login is dummy@pullmanfurniture.com. password is adenvmk
            1909 kitchens on right hand bar.
            Group 91
            Group 91 Index
            There is a small green image then text. They used to line up. All the sections have this problem. Don't know whether it is something I have done or whether its when I upgraded to 14.0.3

            Regards
            Phil Player
            In Firefox all the boxes line up is it the green box and the text you are concerned about?

            If so, either add float: left; to the stylesheet as shown below

            Code:
             .section-link-details div, .product-details div {
                float: left;
                max-width: 100%;
                min-width: 1px;
                padding: 0;
                width: auto;
            }
            or add it as style-"float: left;" to the specific divs generating this code.

            Modifying the stylesheet itself can have unexpected results as these may not be the only divs using that styling.

            The two <div>s involved use classes 'section-link-image' and 'section-link-name' so you could add these classes to the stylesheet (they may already exist but it does not appear so).
            Code:
            .section-link-image{
                float: left;
            }
            .section-link-name {
                float: left;
            }
            You will need to check the changes in Firefox, Chrome and IE to make sure they all respond correctly.

            Malcolm

            SellerDeck Accredited Partner,
            SellerDeck 2016 Extensions, and
            Custom Packages

            Comment

            Working...
            X