Item with fixed position in responsive layout Item with fixed position in responsive layout wordpress wordpress

Item with fixed position in responsive layout


You can solve this by jquery

var new_width = $('#sidebar').width();$('.widget').width(new_width); 


Apply your parent tag position:relative and then apply to your sidebar as position:fixed and try with this too z-index:9999.

thanks.