-2

In my website home page blog section we are displaying some blogs , by clicking that blog it will open in new page !

by hovering its showing link , but click is not working chrome browser (working fine in Firefox browser)

please check this image

imagegorexplain

i checked in CSS but i am not getting what is stooping this ,please let me how to fix this

Link: webiste link

manikanta gowda
  • 103
  • 2
  • 11

3 Answers3

1

the issue is from 'bxSlider'

user this code

if(window.navigator.userAgent.toLowerCase().indexOf("chrome") > 0) {
$("body").on("mousedown", ".bx-viewport a", function() { 
    if($(this).attr("href") && $(this).attr("href") != "#") {
        window.location=$(this).attr("href"); 
    } 
}); 
}

reference : referencelink

0

blogs, by clicking that blog it will open in a new page!

Add target:_blank on a tag

Lalji Tadhani
  • 14,041
  • 3
  • 23
  • 40
0

enter image description here

you need to add target="_blank" on anchor tag like this see attached screenshot

Sunil R.
  • 851
  • 8
  • 15