Home background missing at low res December 12, 2014, 10:22:06 am On small sizes with minimized header the left icon is missing his white background.
Re: Home background missing at low res Reply #1 – December 12, 2014, 02:31:46 pm Sorry for splitting, but it's better to have as much as possible one-topic-one-bug. It looks like the:Code: [Select]#main_menu .linklevel1.active, #main_menu .linklevel1.active:hover { background: transparent;}present somewhere.
Re: Home background missing at low res Reply #2 – December 12, 2014, 11:31:42 pm I changed it to:Code: [Select] #main_menu .linklevel1.active, #main_menu .linklevel1.active:hover { border: 1px solid transparent; background: #fff; }and now it seems to be better. Thanks a lot!Edit: No, can't use this. Now the home button in my desktop browser is completely white.
Re: Home background missing at low res Reply #3 – December 13, 2014, 02:36:15 am If it's just an issue for the desktop version you could move the related changes to the sectionCode: [Select]@media screen and (max-width: 50em) or Code: [Select]@media screen and (max-width: 33.750em) {Both control low screen devices such as tablets and smartphones..
Re: Home background missing at low res Reply #4 – December 14, 2014, 03:09:25 am It's the active position that's missing the background. If there's a way to invert the icon that's active I would prefer this than just no background. But I think I'm not experienced enough to find this spot. If anyone has some time...