Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Hide Text Characters Around Elements Re: Hide Text Characters Around Elements

#134352
CrocoDillon
Participant

This works:

ul {
position: relative;
left: -1000px;
}
li {
position: relative;
left: 1000px;
}

Maybe with overflow: hidden on parent element. Keep in mind though it’s not valid html so some browsers might do funky things and you’ll end up seeing the pipes anyway… maybe.