test
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • dieudonne Friend
    #175986

    Hello,

    if the text of the breadcrumb is too long,it is cut…
    see screenshot for more understanding.

    So how can we fix that (put the rest of the breadcrumb’s text on the next line) ?

    Thank in advance.


    1. 2012-04-10-10h18_37
    TomC Moderator
    #448025

    So that I may best try to assist you and provide you with concise guidance as to what you need to do within your template/site structure, please provide the url of the site you’re working on, as well as set “Optimize CSS” to “No” within your Template Manager–General Settings

    dieudonne Friend
    #448152

    Hello,

    I just PM you with the link of our test website.
    Thank in advance for your help.

    TomC Moderator
    #448158

    The issue appears to be related to both the height of the container space for your breadcrumbs,
    combined with a “nowrap” property within the relative CSS. So, here is your fix . . .

    Within the following file path –> /templates/ja_teline_iv/css/template.css

    at line 908, you will see the following:

    #ja-navhelper-top .ja-breadcrums {
    -moz-border-bottom-colors: none;
    -moz-border-image: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: -moz-use-text-color -moz-use-text-color #CCCCCC;
    border-style: none none dotted;
    border-width: 0 0 1px;
    display: inline-block;
    float: none;
    height: 18px;
    line-height: 18px;
    margin-top: 0;
    max-width: 95%;
    overflow: hidden;
    padding: 0 8px 0 20px;
    white-space: nowrap;
    width: auto;
    }

    Delete “white-space: nowrap” and add “min-height: 4em;” – as follows . . . .

    #ja-navhelper-top .ja-breadcrums {
    -moz-border-bottom-colors: none;
    -moz-border-image: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: -moz-use-text-color -moz-use-text-color #CCCCCC;
    border-style: none none dotted;
    border-width: 0 0 1px;
    display: inline-block;
    float: none;
    height: 18px;
    line-height: 18px;
    margin-top: 0;
    max-width: 95%;
    overflow: hidden;
    padding: 0 8px 0 20px;
    width: auto;
    min-height: 4em;
    }

    SAVE CHANGES – CLEAR CACHE – REFRESH PAGE

    Hope That Helps

Viewing 4 posts - 1 through 4 (of 4 total)

This topic contains 4 replies, has 2 voices, and was last updated by  TomC 12 years, 7 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum