Hi,
I’m trying your new simple theme Espressionista.
It seems to be differences for style.css between file of the demo and file of download package.
File style css of download package break mobile navigation menu…
Hi,
I’m surprised that there is no dedicated forum for Espressionista.
I’m trying to integrate menu descriptions under the main top menu bar.
Adding following markup in espressionista_call_scripts() function breaks the trim nav:
$('#site-navigation .menu > li > a').each(function() {
var title = $(this).attr('title');
if(typeof title !== 'undefined' && title !== false) {
$(this).append('<br /><span>'+title+'</span>');
$(this).removeAttr('title');
}
});
Do you have an idea to make it work ?
Thanks.