when putting in ID in ID section, it does nothing
Hello Milton,
Thanks for writing in!
Adding an ID my-section in a section element will not do anything. The ID does help in making a link if you want to have a button or menu item linked to a section by inserting #my-section as the link.
You can also use the ID in your custom JS or CSS:
#my-section {
/* my custom styling here */
}
(function($) {
$('#my-section').somefunction();
})(jQuery);
Best Regards.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.
