x

How do I stop my site title linking to my home page

Hi. I would like to know how to turn of linking my site title, and how to redirect it to a different page.

1,611 Views
Message 1 of 4
Report
1 Best Answer

Best Answer

Hi @isaa6,

One way to easily achieve this is by using jQuery.

Add the following code inside the Footer Code box:

SETTINGS > SEO > Footer Code

<script>
	(function($) {

		$(function() {

			$('.wsite-logo a').removeAttr('href');

		});

	}(jQuery));
</script>

image

This should work on any theme from Weebly.

You can view an example here: DEMO (note that this site won't be available for too long)

This will remove the link from the logo on all your pages.

Hope this helped you out!

View Best Answer >

1,712 Views
Message 4 of 4
Report
3 REPLIES 3

You have to edit the html and css code. It is a little bit hard if you don´t know. Also as I have noticed, each website has a diferent coding structure (order).

1,599 Views
Message 2 of 4
Report

I can code some HTML and CSS

I have already made some edits to my website code.

1,591 Views
Message 3 of 4
Report

Best Answer

Hi @isaa6,

One way to easily achieve this is by using jQuery.

Add the following code inside the Footer Code box:

SETTINGS > SEO > Footer Code

<script>
	(function($) {

		$(function() {

			$('.wsite-logo a').removeAttr('href');

		});

	}(jQuery));
</script>

image

This should work on any theme from Weebly.

You can view an example here: DEMO (note that this site won't be available for too long)

This will remove the link from the logo on all your pages.

Hope this helped you out!

1,713 Views
Message 4 of 4
Report
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.