• Hi David and Leo,
    I hope you guys are doing well and staying safe!!

    I am using the Lightweight Social Icons plugin to show social media follow widget in GeneratePress, but I am facing a problem that it looks good in desktop, but in mobile, the social media follow widget caption is not showing properly. You can see the image below and please help me to fix this problem.

    social media follow widget.jpg

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Leo

    (@leohsiang)

    Hi there,

    Do you mean that it’s not centered?

    If so add this CSS:

    .widget_lsi_widget .widget-title {
        text-align: center;
    }
    Thread Starter Shivam Pandey

    (@wikihelp360)

    Leo, after applying this css code the social media follow widget caption text is center aligned, but in desktop, the social media follow widget looks good, but in mobile, the social media follow widget is not showing properly. you see the image below and please help me to fix the problem.

    Social Media Follow Icons.png

    Hi there,

    to keep the 4 column icons for smaller devices add this CSS:

    @media(max-width: 420px) {
        .widget ul.lsi-social-icons {
            max-width: 250px;
            display: flex !important;
            flex-wrap: wrap;
            margin: auto !important;
        }
    }
    Thread Starter Shivam Pandey

    (@wikihelp360)

    David, After applying this css code the social media follow widget issue has been resolved but I am facing a problem with the pagination button that the pagination buttons look good on 6-inch or higher screen size phones but Pagination buttons are not showing properly in 5-inch, 5.5-inch, 4.5-inch or lower screen size phones, you can see the image below. please help me to fix the problem.

    pagination.png

    Leo

    (@leohsiang)

    Try this:

    @media (max-width: 768px) {
        .nav-links {
            display: flex;
            justify-content: space-between;
        }
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Alignment Problem in GeneratePress !!’ is closed to new replies.