Hi i have custom image of a map, and i need that to be added as a background image of a column, and the row which contains this column has no container (i turned it off) also i turned off the margin between the columns, and i applied some code that you guys provide for other users, but then it affect the column size. so is there a way i can do this without disturbing the column.
Hi Grant,
Thank you for writing in, try the solution provided here. If that did not work, please provide us the site URL so we can take a closer look.
Cheers!
Perfect, that worked! Thank you 
one more request, can i open it on a new window,
/* This is the code that i used, i tried adding the attribute link to open it a new window, but it didn’t worked. */
jQuery( document ).ready(function($) {
$(’#morro’).on(‘click touched’, function() {
window.location.href = ‘https://goo.gl/maps/nKjrRdSsw6D2’;
});
});
Hello Grant,
To open the links in a new tab, you will have to update the line:
window.location.href = 'https://goo.gl/maps/nKjrRdSsw6D2';
into this line:
window.open('https://goo.gl/maps/nKjrRdSsw6D2', '_blank');
We would loved to know if this has work for you. Thank you.
Thanks, it worked!
Glad we were able to help 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.