Right and Left advertising space?

Hello everyone, I know my questions are endless…
I looked for the codes on the internet but it didn’t work. (CSS HTML)

Like that.

Do we offer advertising solutions elsewhere other than these areas?

I will not use Adsense.

Discourse Bars supports right and left sidebars. But you will need to design the components yourself.

I support the sidebar framework. If you need help with building the components please marketplace

1 Like
.leftad {
    position: fixed;
    top: calc(var(--header-offset, 60px) + 2em);
    left: 20%;
    width: 120px;
    height: 600px;
    background : rgb(62, 62, 88,.7);
    border-radius: 5px;
}
 
.rightad {
    position: fixed;
    top: calc(var(--header-offset, 60px) + 2em);
    right: 20%;
    width: 120px;
    height: 600px;
    background : rgb(62, 62, 88,.7);
    border-radius: 5px;
}

How can I fix position ?
Ads do not appear depending on screen size.

left: 20%;
right: 20%;

Which codes should I write instead of these codes?