• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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