• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

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