• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Question How to insert a banner into the main page

Poehali

New Pleskian
Hi there! I hope you're doing well.
I'm working on the WordPress site and I need to insert a banner at the bottom of the main page. Is it possible to make it without plugins using only code? Please share the guidelines!
My site: RecRoomPick
 
Last edited:
Hi there! I hope you're doing well.
I'm working on the WordPress site and I need to insert a banner at the bottom of the main page improve posture. Is it possible to make it without plugins using only code? Please share the guidelines!
My site: RecRoomPick
I want to create a banner, which when clicked should take the visitor to a certain page.
I am using Twenty Ten theme and i have created the banner.
I don’t know where to insert HTML codes. ^^*

The blog I need help with is: (visible only to logged in users)
 
Hi,
To insert a banner into the main page, you typically need to:

  1. Create or obtain the banner image.
  2. Add HTML code to your main page where you want the banner to appear, using the <img> element.
For example:

htmlCopy code
<img src="banner-image.jpg" alt="Banner Description">

Make sure to replace "banner-image.jpg" with the actual file path or URL of your banner image and provide a meaningful "alt" description for accessibility.
 
Back
Top