Announcement

Collapse
No announcement yet.

Non-breaking space problem !

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Non-breaking space problem !

    When I enter text in the « Description » of my product, I use the following command to insert a non breaking space :

    «!!<&nbsp>!!chansonniers!!<&nbsp>!!»
    In Explorer, it shows as follow : « chansonnier »
    but
    in Firefox, it shows as follow : «&nbspchansonnier »

    http://www.planirom.qc.ca/exemple/explorer.jpg
    http://www.planirom.qc.ca/exemple/firefox.jpg

    What's my problem or what should I use ?

    Thank you !
    Bernard Morin

    #2
    Just use the spacebar, no need for html.

    &nbsp; is the correct way to code a space.

    Comment


      #3
      If I use the space from the space bar I get things like this :

      a adfj alf af ftexte text «
      titre » aljfajf alfjlafjadf

      I want the "«" to stick with the word like like this :

      a adfj alf af ftexte text
      « titre » aljfajf alfjlafjadf

      In French, it's a writing error to separate "«" from the word.
      Because I sell books, I try not to make that kind of error.
      Bernard Morin

      Comment


        #4
        Oups !

        I just saw the ";" added at the end of the "&nbsp;" !
        Just tried it and it worked !

        Thank you !
        Bernard Morin

        Comment


          #5
          so you need the << & the >>

          then you might need the ascii code instead
          < = &#60;
          > = &#62;

          Comment


            #6
            ffs code
            & # 60 ;
            & # 62 ;

            with out the spaces

            Comment


              #7
              Originally posted by cactus02 View Post
              ...I want the "«" to stick with the word like like this :

              a adfj alf af ftexte text
              « titre » aljfajf alfjlafjadf
              ....
              The only way you can force « » to stay with the word (and not split if wrapped at the end a line) will be to not have a space between them and the contained word. ie like this «titre».
              As darren mentioned therefore you would need:
              Code:
              &60titre&62

              Comment

              Working...
              X