WebSite X5Help Center

 
Malcolm H.
Malcolm H.
User

Responsive website footer - hyperlinks  en

Автор: Malcolm H.
Просмотрено 882, Подписчики 2, Размещенный 0  

Within the footer on a Responsive website - is it possible to create a hyperlink to another page on that website? If so  please do let me have instructions.

Many thanks, Malcolm

Размещено
7 Ответы - 1 Корректно
Serg Linds
Serg Linds
User

Just insert html-code <a href="<i>your_link</i>">your_text</a>

Читать больше
Размещено От Serg Linds
Malcolm H.
Malcolm H.
User
Автор

That sounds like it should work - many thanks.

If I go on to 'Responsive Template Structure - and then select page footer - I don't see where there is an option to insert html code.

I guess that what I am trying is wrong.

Are you able to give me a little more guidance please?

Best regards, Malcolm

Читать больше
Размещено От Malcolm H.
Paul M.
Paul M.
Moderator

Hello Malcolm,

Just type your HTML code directly in the 'Text' box (under 'Content Properties') that Serg has highlighted in red in his screenshot.

Kind regards,

Paul

Читать больше
Размещено От Paul M.
Malcolm H.
Malcolm H.
User
Автор

Hi Paul

I am trying to get a link to the page that contains the 'Legal notices and Privacy Policy' for the website.

If I type the HTML code per instructions as:-

<a href="<i>menu\\Legal notices and Privacy Policy</i>">Privacy Policy</a> this wording appears on the mobile phone version of the website rather than a link.

Clearly I am doing something wrong. Sorry to pester - but can you help further please?

Читать больше
Размещено От Malcolm H.
Paul M.
Paul M.
Moderator

Please use this HTML instead:

<a href="http://www.sixsigma-ltd.com/legal-notices-and-privacy-policy.html">Privacy Policy</a>

The link needs to be absolute rather than relative, and the italics tags are not needed.  So the code above is what you require.

Читать больше
Размещено От Paul M.
Malcolm H.
Malcolm H.
User
Автор

Paul.

Thnak you ever so much - that works a treat. Brilliant.

Just a last question - is there any way to change the colour

Читать больше
Размещено От Malcolm H.
Paul M.
Paul M.
Moderator

You could use a little inline CSS...  the revised code would be as follows:

<a style="color:red"; href="http://www.sixsigma-ltd.com/legal-notices-and-privacy-policy.html">Privacy Policy</a>

Simply change the 'color' in the code to whatever you prefer.

Читать больше
Размещено От Paul M.