Site logo

Archived topic

Generate Press Footer Issue With Footer Widget 3

5 replies · Started by Monica on October 5, 2020

Viewing posts 1–6 of 6

Hello, I am using Generate Press version 2.4.2 and GP Premium version 1.12.1.

For the Footer section, I placed a Text widget in Footer Widget 1 and Footer Widget 2 and it appears fine. They appear side by side.

However, when I placed a Text widget in Footer Widget 3, it placed it all the way on the right side of the Footer section away from the other 2 widgets. I was thinking it was supposed to be located right next to Footer Widget 2. If I place anything in Footer Widget 4, it never shows at all in the Footer section.

Hi there,

Any chance you can link us to the site in question?

You can use the private information field.

Let me know :)

See response in private information.

Go to Additional CSS field in the customizer and remove this:

/* GENERATEPRESS FOOTER WIDGET AREA */
/* GeneratePress widget layout tweaks & alignments for 3 columns */
@media (min-width:1025px) {
  .footer-widgets .footer-widget-1 {
    text-align: left;
    width: 25%;
  }
  .footer-widgets .footer-widget-2 {
    text-align: left;
    width: 40%;
  }
  .footer-widgets .footer-widget-3 {
    text-align: right;
    width: 35%;
  }
}
@media (min-width:768px) AND (max-width:1024px) {
  .footer-widgets .footer-widget-1,
  .footer-widgets .footer-widget-2,
  .footer-widgets .footer-widget-3 {
    clear: none !important;
    float: left;
    width: 33.3333%;
  }
}
@media (max-width:768px) {
  .footer-widgets .widget {
    float: none;
    margin: 0 auto;
    max-width: 400px;
    padding: 60px 20px 0 20px;
    text-align: center;
  }
}

That worked!

Glad to hear :)

This archived topic is closed to new replies.