Archived topic
How is the width of my sidebar in Pixel?
3 replies · Started by Anne-Barbara on November 25, 2022
Hi,
in the customizer I have the setting that the right sidebar is 25%. How is the with of it in pixel? I have an element above the sidebar that should have the same width:
https://hochsensibelsein.org/wP/
Sorry, but I couldn't find this anywhere...
Kind regards,
Anne-Barbara
Hi there,
your image is on 255px wide, so it doesn't fill the sidebar width on a larger screen.
You can either use a wider image, or just add some CSS to force the image to fill the space:
.inside-right-sidebar img {
width: 100%;
max-width: 100%;
}
Thank you, great! :-) Kind regards, Anne-Barbara
You're welcome