Commit 9c36131818383ec624cbb38105f963d3f26684a5
Exists in
master
and in
9 other branches
Merge branch 'fix_breadcrumbs_position' into 'master'
Fix breadcrumbs position Best position for breadcrumbs See merge request !174
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/noosfero-spb/noosfero-spb-theme/theme.js
... | ... | @@ -270,7 +270,7 @@ $('#link-buscar').click(function(e) { |
270 | 270 | } |
271 | 271 | |
272 | 272 | function move_breadcrumbs() { |
273 | - $('.breadcrumbs-plugin_content-breadcrumbs-block').prependTo('#wrap-2'); | |
273 | + $('div.breadcrumbs-plugin_content-breadcrumbs-block').insertBefore('#content-inner'); | |
274 | 274 | $('<span id="breadcrumbs-you-are-here">Você está aqui:</span>').insertBefore($('.breadcrumbs-plugin_content-breadcrumbs-block .block-inner-2').children().first()); |
275 | 275 | } |
276 | 276 | ... | ... |