Archived topic
Need help for customizing sidebar
9 replies · Started by Rohith on December 10, 2022
Hi, is it possible to create these kind of sidebar on my website?


I want to customize like this on my sites sidebar. please help.
Hi there,
Looks like it would require a custom solution.
Can you link me to the example website?
Is it possible with html and css? i want to add custom links in sidebar like this.
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.
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.
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;
}
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.
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;
}
Excellent. Thank you for the support. Everything works perfectly.
Glad to hear that!