html - Plus sign in a UL bullet list? -


i need have bullet list generate tabs in page. page i'm working on:

http://citydev.pipehosting.it/francia-en-it/parigi-it/torre-eiffel.html

i need write "+info" in 1 of tabs - <li> elements - it's shown "info+" instead... (as seen when visiting link).

my html list:

<ul class="tabs">      <li class="current"><strong>prodotto</strong></li>      <li>cosa include</li>     <li>in evidenza</li>      <li>come funziona</li>      <li>consegna</li>     <li>+info</li>      <li>video</li>  </ul> 

this because direction of text in tab list set right left. fix modify css override declaration left right:

.tabs li {     direction: ltr; } 

or remove direction: rtl; set on ul.tabs.


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -