giovannicalderoni 0 Report post Posted October 3, 2011 Hello! How can I make sure that when someone click on some links that I added (such as the Google Maps icon in the header of the site or any other image with a link), it opens in a new browser window? Share this post Link to post Share on other sites
kastelic 6 Report post Posted October 3, 2011 like this: [code] google [/code] Share this post Link to post Share on other sites
giovannicalderoni 0 Report post Posted October 3, 2011 Thanks kastelic but if the taget link is in the setting of iblog? i have to insert http:// .. i cant insert html! I think that i need a css code to change the way that the link in the header of map work! You can help me? Share this post Link to post Share on other sites
kastelic 6 Report post Posted October 4, 2011 You have to target it with javascript. Here's a jQuery example: [code] jQuery('#header a').attr('href','http://google.com'); [/code] This targets every anchor tag in a header div and points it to google. You will have to adjust the selector to fit your needs. Share this post Link to post Share on other sites