The problem is with the position of the background image. Play around with the background-position-x attribute.
Thread Starter
VDiaz
(@vdiaz)
Hi and thanks for helping me with this… i’m looking but don’t find the background-position-x attribute…. please advise.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
He means on line 602 style.css (I recommend using a child theme from this stylesheet), there is CSS
#access li {
float: right;
position: relative;
background: url(images/menu.jpg) no-repeat right;
}
Could be
#access li {
float: right;
position: relative;
background: url(images/menu.jpg) no-repeat left;
}
and do the same for the :hover status
Thread Starter
VDiaz
(@vdiaz)
Thanks for stepping in, appreciate it.
I changed the right to the left and now there’s too much space on the other side… any other suggestions?
How about replacing that background attribute with this:
border-right: 1px solid red; (or put in the hex value for whatever color you want)
That way you get rid of an http request and speed up load times?