• Resolved tipadei

    (@tipadei)


    I added a team widget ot my blog page’s sidebar, but you can see only narrow stripe of it like it wouldn’t fit in the sidebar. The other widget are showing normally and are wider than the team widget. What should I do?

Viewing 4 replies - 1 through 4 (of 4 total)
  • MariusG

    (@marius_codeinwp)

    Hello,

    Our custom widgets are made for the frontpage sections only, we haven’t really thought about them being used in sidebars.

    Send us a link to your website and I’ll see what I can do about it.

    Kind regards,
    Marius

    Thread Starter tipadei

    (@tipadei)

    Here’s the link for my blog page.

    https://www.petsoffinland.com/uutiset/

    And you can see the first widget is the team widget.

    MariusG

    (@marius_codeinwp)

    It’s pretty tricky, because the widget is made to occupy only a quarter of the space.
    It’s CSS is:

    .col-lg-3 {
        width: 25%;
    }

    You would need to change to 100% everywhere else except on the homepage, this is where the tricky part comes.

    If you want it to appear on a specific number of pages, then you can install a plugin such as this one and add this code on each page you wish to show that widget in the sidebar.
    .col-lg-3 {
    width: 100%;
    }`

    However, if you have a very large number of posts/pages you wish to show it on, it requires some changes in the php code and use sepparate CSS on homepage only.

    Regards,
    Marius

    MariusG

    (@marius_codeinwp)

    The code for sidebar is:

    .col-lg-3 {
        width: 100%;
    }

    I had an extra character there

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Sidebar customizing’ is closed to new replies.