Change hyphen/dash for vertical line in menu [closed]

If you mean in the footer? I looked at the Blaskan Theme, and saw hyphens in the footer menu.

To change that… use CSS. Make the

#footer-nav li:before {
      content: " \007C ";
      font-family: Arial, sans-serif;
}

That will change it from a hyphen. To a |

To make it space out better, you may want to add

      padding-right: .4em;