Hi...many thanks for all your previous help..I was wondering if you could help me with the following. I have published three logos into the first footer widget area that are associated with other websites. I would like to know 1) How can I stack them vertically? and 2) How do I embed the link to the associated website? I want the user to be able to click on the logo to be taken to the associated website for each individual logo. many thanks in advance
Hello, Go to the Appearance > Widgets panel in your dashboard and drag & drop Text Widget in the First Footer Widget Area and after that paste the code given below in content area of that text widget. Code: <a href="Enter the link address of First logo here"><img src="Enter the URL address of first logo here"></a><br/> <a href="Enter the link address of Second logo here"><img src="Enter the URL address of Second logo here"></a><br/> <a href="Enter the link address of third logo here"><img src="Enter the URL address of third logo here"></a> This will solve your issue.
Many thanks for this.....this has worked perfectly..however...although it it not good practice I do need the links to open in another tab on the users browser..how can I do this? regards John Paul
Hello, Go to the Appearance > Widgets panel in your dashboard and drag & drop Text Widget in the First Footer Widget Area and after that paste the code given below in content area of that text widget. Code: <a href="Enter the link address of First logo here" target="_blank"><img src="Enter the URL address of first logo here"></a><br/> <a href="Enter the link address of Second logo here" target="_blank"><img src="Enter the URL address of Second logo here"></a><br/> <a href="Enter the link address of third logo here" target="_blank"><img src="Enter the URL address of third logo here"></a> This will solve your issue.