I'm new to jquery and i'm trying to find out if it's possible to create simple accordion without the arrow icon and without padding at all inside the accordion content.
I want to use the whole content space, and it seems like jquery accordion widget auto create some padding as the width of the arrow icon.
Thanks! Lior
to remove the icons you better use
$( "#accordion" ).accordion({
icons: false
});