Hello,
My comments area doesn't fill the whole area of my page. @tomson helped me out before with the following css:
#wpcomm, #wc-comment-header {
max-width: 100% !important;
}
This css unfortunately no longer works. Does anyone know what the new code should be?
Thank you,
-Chris
Got this working! Here is the snippet if anyone needs it:
#wpdcom.wpdiscuz_auth.wpd-default.wpd-layout-2 {
max-width: 100% !important;
}
Make sure to replace the layout number with the layout you're using.
Hope this helps.
-Chris
Guess I spoke too soon. While this will probably work for most people, I just realized that this code isn't sticking when viewing the site as a guest. I'm using Ultimate Member btw. Can anyone shed any light on this?
Thank you,
-Chris
Update:
I figured it out. The correct CSS looks like this:
.wpd-default.wpd-layout-2 {
max-width: 100% !important;
}
Again, please make sure to replace the layout number with the layout you're using.
Hope this helps.
-Chris