how do I make my archive pages align with the theme?
see attached image
for some reason I have padding and don't know where it's coming from
Hello,
It should be a CSS issue with your theme.
Which theme are you using?
Can you provide the live problem page URL? I need to test and debug it in my Chrome browser
Thanks for the details, I have test the URL you mentioned above, those CSS codes are from your theme files:
hidden link
.large-10 {
flex-basis: 83.3333333333%;
max-width: 83.3333333333%;
}
You can try to disable/remove them, see my screenshot flatsome.jpg
Or setup custom CSS codes to override them, for example:
media screen and (min-width: 850px){
#content .large-10 {
flex-basis: 100%;
max-width: 100%;
}
}
I put the code both places and it still didn't work
You just need to put below CSS codes into the screenshot you provided:
https://toolset.com/wp-content/uploads/2022/10/2478809-2022_10_18_23_15_47.jpg
#content .large-10 {
flex-basis: 100%;
max-width: 100%;
}
My issue is resolved now. Thank you!