• I ahve a text widget that contains multiple links thathas always worked, now all of the sudden it is busting my website,is the below format correct for multiple links in a text widget? Thanks.

    <li><a href="https://www.#####.com" title="####.com">#####.com</a></li>
    <li><a href="https://www.#####.com" title="####.com">#####.com</a></li>
Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter jwillua

    (@jwillua)

    <li><a href="https://www.rolltide.com" title="RollTide.com" target="_blank">RollTide.com</a></li>
    <li><a href="https://www.bamaonline.com" title="bamaonline.com" target="_blank">BamaOnline.com</a></li>

    Unless you provide a link to a page demonstrating the problem, no one will be able to offer much in the way of assistance.

    Thread Starter jwillua

    (@jwillua)

    Its a code problem not a website problem, is the code below correct for posting a link? Would you use this code? I dont understand this response.

    <li><a href="https://www.###.com" title="###.com" target="_blank">###.com</a></li>

    Unless we can see the site, we cannot offer any real assistance. As far as I can tell, your markup is correct.

    Oh – and all duplicated topics are deleted on sight…

    is the code below correct for posting a link?

    for a link – yes.

    however, as a list it needs to be wrapped either in a unordered list tag <ul> or ordered list tag <ol>:
    https://www.w3schools.com/html/html_lists.asp

    for instance:

    <ul>
    <li><a href="https://www.rolltide.com" title="RollTide.com" target="_blank">RollTide.com</a></li>
    <li><a href="https://www.bamaonline.com" title="bamaonline.com" target="_blank">BamaOnline.com</a></li>
    </ul>

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Text widget busting website’ is closed to new replies.