-
AuthorPosts
-
dieudonne Friend
dieudonne
- Join date:
- January 2011
- Posts:
- 947
- Downloads:
- 61
- Uploads:
- 266
- Thanks:
- 452
- Thanked:
- 107 times in 3 posts
April 10, 2012 at 8:24 am #175986Hello,
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.
TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
April 10, 2012 at 5:16 pm #448025So 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 Frienddieudonne
- Join date:
- January 2011
- Posts:
- 947
- Downloads:
- 61
- Uploads:
- 266
- Thanks:
- 452
- Thanked:
- 107 times in 3 posts
April 11, 2012 at 6:50 pm #448152Hello,
I just PM you with the link of our test website.
Thank in advance for your help.TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
April 11, 2012 at 7:20 pm #448158The 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
1 user says Thank You to TomC for this useful post
AuthorPostsViewing 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
text of the breadcrumb is cut !
Viewing 4 posts - 1 through 4 (of 4 total)