PDA

View Full Version : How to word-wrap breadcrumb in navbar template?


NTMID8
07-27-2009, 02:40 PM
I'm wondering if I can force a word-wrap of the breadcrumb at a certain percentage so that it does not appear over the checkered flag image as in the image below. I've tried making some changes myself, but everything I do seems to move or justify the breadcrumb to the right, which is opposite of what I want and seemingly opposite of the code I am changing. This one has me scratching my head.

Seven Skins
07-27-2009, 09:56 PM
Add another table cell and put those checkered flags in that table call ... and breadcrumb text will wrap around.

NTMID8
07-28-2009, 02:13 AM
Add another table cell and put those checkered flags in that table call ... and breadcrumb text will wrap around.
Thanks. I'll have to approach it differently then. I'll try ti your way. Currently it is a background image defined in the CSS and right-justified.

NTMID8
07-28-2009, 04:07 AM
OK, I added another table and put the image in it on it's own. I can make it look correct at one resolution (first image) but it doesn't seem to scale properly at lower resolutions, though you can see the breadcrumb wrapped properly (second image). Any help on how to fix this?

NTMID8
08-01-2009, 11:45 PM
Any help, please?

Seven Skins
08-03-2009, 01:36 PM
2 ways you sort this...

- Instead of using css to get image, use image tag in the table cell or you can use code in the table cell ... <img src="$vboptions[cleargifurl]" width="250" height="70" border="0" alt="" /> .. edit the width and height the same size as your flag image.

.

NTMID8
08-04-2009, 01:32 AM
2 ways you sort this...

- Instead of using css to get image, use image tag in the table cell or you can use code in the table cell ... <img src="$vboptions[cleargifurl]" width="250" height="70" border="0" alt="" /> .. edit the width and height the same size as your flag image.

.
Great... that did the trick. Thank you!