Archived topic
Css help
3 replies · Started by johnaps on April 7, 2020
Hello again gp team!
I am hoping for your help in a few new minor problems i am facing, fingers crossed!
I am facing three very weird problems.
1. I am trying to bring the lines closer on my left-sidebar widget without meshing with global variables...
https://imgur.com/a/ELxr0NY
line-height doesnt work, only the font-size on gp typography in widgets sections if i make it very very small, but that makes my footer widgets too small to read.
2. in the main element all h2 have a small padding from the left for some reason, and i havent found any css doing that...
https://imgur.com/a/txXUrxl
3. on author page is it possible to make the author description lines to break in approximately 500px and holding the same layout? If i append 500px width to the description the it gets out of position... (http://thefinterestcom.kinsta.cloud/author/johnitos/)
Hi there,
1. Line-height should work:
#left-sidebar.sidebar .widget a, .sidebar {
line-height: 1.5em;
}
2. This is the issue:
https://www.screencast.com/t/cYhZJRZq3qI
https://www.screencast.com/t/wLruBQxM5Ih
3. Try this:
.saboxplugin-wrap .saboxplugin-desc {
max-width: 500px;
margin: auto;
}
Thank you so much! Great at what you do as always :))
No problem :)