Support for Envato Buyers Forums Miao I want to change the number of widget at the bottom in my site.

Viewing 3 reply threads
  • Author
    Posts
    • #106808
      mylee
      Participant

      Hi,
      I want to change the number of widget at the bottom in my site.
      Currently there are 4 columns, I want to modify 4 to 3. Could you let me know how I can?

    • #106873

      Hi

      Are you using the child theme now? If yes, you can create temporary login details if possible. I will help you create a new footer template.

      Thanks

    • #106912
      mylee
      Participant

      Hi,

      Sorry for my late reply.
      No I’m not using the child theme. I want to know the way on the parent theme itself how to change the number of columns of footer template.

      Thanks in advance.

    • #106935

      Hi

      If you don’t want to use Child theme, you can try to add these CSS to Appearance > Customize > Additional CSS

      #bottom_widget .container .four.columns:nth-child(4) {
         display: none;
      }
      #bottom_widget .container .four.columns:nth-child(3) {
         margin-right: 0;
      }
      #bottom_widget .container .four.columns {
         width: 30%;
      }
      @media only screen and (min-width: 960px) and (max-width: 1199px) {
       #bottom_widget .container .four.columns {
          width: 30%;
       }
      }
      @media only screen and (min-width: 768px) and (max-width: 959px)
       #bottom_widget .container .four.columns {
          width: 30%;
       }
      }
      
      @media only screen and (min-width: 767px)  {
        #bottom_widget .container .four.columns {
          width: 100%;
       }
      }
Viewing 3 reply threads
  • You must be logged in to reply to this topic.