How to center raw data (Amazon Banner)

Hello,

Could you kindly assist centering Amazon banner, seems like centering is not working

Could you also assist me in adding big banner ads on the left/right of the page

Thank you so much

Hello Haz,

Thanks for posting in!

Are you using a text element and have inserted the Amazon Banner? Please use the Text Align option in your column settings instead. This should be enough to center all the elements inside the column.

If nothing is helping, provide us access to your site so that we can check your settings. Please create a secure note with the following info:
– Link to your site
– WordPress Admin username / password

To know how to create a secure note, please check this out: https://theme.co/docs/getting-support

Best Regards.

Hello Ruenel,

Unfortunately text didnt fix this issue. Please find details in secure note.

Please find global blocks, blue ad banner is the one im working on.

Hello Haz,

The given credentials is not working for us. And we are seeing this in the login screen:
dLTxZLhgQpSs3Qdq0aBD_g

Meanwhile, please edit your global block and make sure to set the global container to OFF and set a width of 100% in the row settings.

Regards.

Unfortunately container setting didnt fix it, please find information in secure note

Hello Haz,

As it turns out, you are inserting an iframe code to display the ad. By default, iframes has a built-in CSS that will have a 100% width and maximum width with this default CSS:

 .entry-content iframe {
   width: 100%;
    max-width: 100%;
}

To resolve your issue, you will have to modify the code above adding an auto width with a minimum width of 728 pixels because this is the default width of the iframe ad. Therefore the final code could be:

.entry-content iframe {
   width: auto;
   min-width: 728px;
   max-width: 100%;
}

On the other hand, are you trying to add a banner ad on the left side on your homepage? It is best that you find a good Ad Manager plugin. This should be able to help you position the ad right where you want it to be.

Best Regards.

1 Like

Ruenel, you are just amazing. You. Are. Amazing.
Its in the center now, and i will definitely research about the plugins to place sidebar ads.
Thank you so much!

You’re welcome!
It’s good to know that it has worked for you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.