-
AuthorPosts
-
October 5, 2013 at 12:06 pm #191168
Hi,
I would like move the breadcrumbs at the top on the page (at the top on content).
When I tried to move it in index.php, I do :<?php if( !$this->countModules('slideshow') ) {?>
<div id="container" class="wrap">
<div class="main container-main clearfix">
<div id="mainbody" class="clearfix">
<!-- breadcrumbs -->
<?php if( $this->countModules('breadcrumbs') && !$this->countModules('slideshow') && !jaTpl_check ('islayoutview') ) {?>
<div id="breadcrumbs" class="wrap">
<div class="main clearfix">
<jdoc:include type="modules" name="breadcrumbs" />
</div>
</div>
<?php } ?>
<!-- MAIN CONTENT -->
<div id="content">
...So, It break the title of page (cf. image). I do not find the solution (I’m sure that’s easy, but there’s something logical I don’t find).
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
October 7, 2013 at 4:42 am #508168Hi yasarts,
Could you send me screenshot of exact position you want to move the breadcrumbs to?
October 7, 2013 at 3:27 pm #508255Hi,
I would like the breacrumbs before the content (under the black part). I tried to make a clear sreenshot :
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
October 8, 2013 at 8:12 am #508349Hi,
You can try to change the code to:
<?php if( $this->countModules('breadcrumbs') && !$this->countModules('slideshow') && !jaTpl_check ('islayoutview') ) {?>
<div id="breadcrumbs" class="wrap">
<div class="main clearfix">
<jdoc:include type="modules" name="breadcrumbs" />
</div>
</div>
<?php } ?>
<!-- // SLIDESHOW -->
<?php if( $this->countModules('slideshow') ) {?>
<div id="slideshow" class="wrap">
<div class="main clearfix">
<jdoc:include type="modules" name="slideshow" />
</div>
</div>
<?php } ?>
<!-- // SLIDESHOW -->
and open file: /templates/ja_lens/css/template.css > add this css rule:
.content-inner div > h1 {
margin: -142px auto 85px -20px !important;
}
You can change to your desired value
1 user says Thank You to Saguaros 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 Saguaros 11 years, 1 month ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum