Hello
Can someone tell me what class is hidden? I cant get the title to show up.
Here is the url: http://gorast.com/HOSTmaster/stepbystep-org-mk/
The one with the problem is the left in the GRID5 - the colorful boxes.
Thanks,
S@
<script type="text/javascript">
(function($) {
$(document).ready(function() {
$('.gkGrid-grid1_4-2').prepend('<h3>TITLE OF A MODULE</h3>');
});
})(jQuery)
</script>
<script type="text/javascript">
(function($) {
$(document).ready(function() {
$('html[lang="en-gb"] .gkGrid-grid1_4-2').prepend('<h3>TITLE OF A MODULE</h3>');
$('html[lang="de-de"] .gkGrid-grid1_4-2').prepend('<h3>TITLE OF A MODULE IN DIFFERENT LANG</h3>');
});
})(jQuery)
</script>