Home > Net >  How can I get rid of 'my blog' on this website?
How can I get rid of 'my blog' on this website?

Time:06-09

There is this strange whitespace around my website. It reads 'my blog' and has navigation bars and takes up much of the site from all sides. How can I remove it?. I'm not sure what I did that created it.

https://redbridgesomaliconsortium.org.uk/

Any help would be greatly appreciated.

CodePudding user response:

Go to edit page and remove headers, footers and anything else or change the theme.

CodePudding user response:

Steps to debug go to your favorite web browser get the inspector and inspect the areas where the problems are ,

for example i fixed them by editing these 2 lines in the source code as debugging

How to fix the navigation bar

How to fix the Title and description of posts

Possible Solutions

1.Try to customize the title and description in the word press admin panel

  1. try to edit the theme files in your favorite code editor and manually find these HTML tags and update them

I think this is the one you need

  1. Try to find the plugin that created the title and description in your case it would be https://pagelayer.com/docs/pagelayer-widgets/title/ you can even find in the code i inserted in the pictures above that shows the plugin used or the page editor
<div >My Blog</div>

and for the title it would be the admin panel

and customizing the title and description

<title>My Blog – My WordPress Blog</title>
  • Related