Column links not working

https://staging.ihomedna.com/wp/

read forums on creating clickable links in all columns on this page.
entered js and css but links not working

Hi There,

Thanks for writing in!

Can you please clarify where did you get the JS and CSS? seems I didn’t find it in your website.
Please share the code so that we can have a look.

I wanted to clarify one thing this is something customization work, which is out of the theme support scope. We can’t guaranty you for a 100% solution but we will try our best to give you a pointer for that.

THanks

i read another post on this forum.
that is where i got the JS and CSS from.

If you look at the home page
Cornerstone
then click on JS and then CSS right from that page.

here is the post that i got the info from

Hi again,

I checked your page and I see the IDs you’re using in the script are not assigned to any of your columns. For example in your code #usmiliary-2 or #badges-1 are not assigned to any of your column. If you assign those IDs to your columns then the issue will be fixed.

As you see the IDs are different in columns and in your script. Just match the IDs to fix the issue.

If it still doesn’t work then you can try this method instead: first assign a unique ID to all of your columns you want to be linked for example linked-column-1 to your first column, linked-column-2 to your second column and so on and then add the following code in the Theme Options > JS:

jQuery(document).ready(function($){
	jQuery("#linked-column-1").wrapInner("<a style='display: block;' href='http://google.com/'></a>");
	jQuery("#linked-column-2").wrapInner("<a style='display: block;' href='http://google.com/'></a>");
	jQuery("#linked-column-3").wrapInner("<a style='display: block;' href='http://google.com/'></a>");
	jQuery("#linked-column-4").wrapInner("<a style='display: block;' href='http://google.com/'></a>");
});

Please note that the code provided above serves as a guide only and is to help you in getting started so implementing it and maintaining the code will be out of our support scope and for further maintenance for new possible versions of the theme that may cause the customization to break, you will need to hire a developer.

Thank you for understanding!

Thanks.
Used your method and worked!

You’re most welcome,

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.