Skip to main content
Inspiring
November 1, 2017
Answered

logo hyperlink issue

  • November 1, 2017
  • 2 replies
  • 410 views

Does anything jump out here as to why the .png's hyperlink is not working in the browser?

<div class="col-xs-12">

<div class="row">

<div class="col-sm-12 col-lg-12 clearfix">

       <div class="logo">

                    <a target="_blank" href="#"><img src="images/logo.png" class="img-responsive" alt="Logo Placement Here"></a>

                     </div>         

     </div></div></div>

Thanks.

    This topic has been closed for replies.
    Correct answer pziecina

    You are not actually linking to anything, as all the href is going to is '#'.

    2 replies

    Jon Fritz
    Community Expert
    Community Expert
    November 1, 2017

    Is there a link in your actual code?

    In the above, you just have # with target="_blank".

    As written, it should open a new window or tab (depending on user settings) with the same page in it.

    pziecina
    pziecinaCorrect answer
    Legend
    November 1, 2017

    You are not actually linking to anything, as all the href is going to is '#'.