Site logo

[Resolved] Need help for customizing sidebar

Home Forums Support [Resolved] Need help for customizing sidebar

Home Forums Support Need help for customizing sidebar

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #2457265
    Rohith

    Hi, is it possible to create these kind of sidebar on my website?

    sidebar
    different section

    I want to customize like this on my sites sidebar. please help.

    #2457408
    Leo
    Staff
    Customer Support

    Hi there,

    Looks like it would require a custom solution.

    Can you link me to the example website?

    #2457460
    Rohith

    Is it possible with html and css? i want to add custom links in sidebar like this.

    #2457831
    David
    Staff
    Customer Support

    Hi there,

    what is the list of items being shown there? Do you have a sidebar with a list that you want styled like that ? IF so where can i see it.

    #2457959
    Rohith

    I have created different categories in WordPress, and I want to show that links in sidebar. I will manually add the links. I tried using tables but it does not work well, not looking good.

    #2458029
    David
    Staff
    Customer Support

    Try adding this CSS:

    
    .widget#block-4 {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }
    .widget#block-4 a {
        flex: 1 0 calc( 50% - 5px );
        padding: 5px;
        border: 1px solid #ccc;
        text-align: center;
        background-color: #eef;
    }
    .widget#block-4 a:hover {
        background-color: #efe;
    }
    #2458039
    Rohith

    yesss… it working. thank you for continues help.
    also one more help, title stays the same. how to change the widget title style? something like the example image.

    #2458787
    David
    Staff
    Customer Support

    Try this to style the H4 and H5 titles inside the right sidebar that have a background color:

    
    .inside-right-sidebar h4.has-background,
    .inside-right-sidebar h5.has-background {
        padding: 0.35em;
        border-left: 7px solid #eeba0b;
    }
    #2458823
    Rohith

    Excellent. Thank you for the support. Everything works perfectly.

    #2458968
    David
    Staff
    Customer Support

    Glad to hear that!

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.