-
AuthorPosts
-
September 28, 2013 at 3:58 pm #190992
How do I create full page width modules (header & footer) to extend the entire width of my JA Argo website, like this:
http://joomlart.com/documentation/joomla-templates/
With the following specifications:
– full width header with background color module
– full width footer with background color module
– breadrumbs
– change T3 logo to my logo (linking to my designated URL)I also noticed that the breadcrumbs is hidden on mobile/tablet view and the logo moves under footer text. I would like the option for both keep & hide on mobile/tablet view.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
September 30, 2013 at 10:17 am #507516We have defined wrap css class to show full width, if you want it to show full width you can add it into header and footer php source code in templates/ja_argo/tpls/blocks
If you want to hidden position in devices you can use my way on the screenshot below
October 3, 2013 at 5:39 am #507875Please provide more details…
I want two full page width module positions (masthead and footer) exactly like the ones on the T3 Typography page:
http://t3-framework.org/typography.htmlJA Argo does not have either. I would like both features on my website.
Please help by providing details instructions. Thanks in Advance.Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
October 3, 2013 at 11:58 am #507911My below solution will help you to do that
1) Add masthead position
Open templates/ja_argo/tpls/default-content-left.php file
From
<?php $this->loadBlock ('header') ?>
Change to
<?php $this->loadBlock ('header') ?><?php $this->loadBlock ('masthead') ?>
2) Create masthead.php file templates/ja_argo/tpls/blocks/ folder
<?php
/**
* @package T3 Blank
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/defined('_JEXEC') or die;
?><?php if($this->countModules('new_header')): ?>
<section class="container">
<jdoc:include type="modules" name="<?php $this->_p('new_header') ?>" style="T3Xhtml" />
</section>
<?php endif; ?>3) Create new module and appear with masthead position
You can continue that with footer positon
October 7, 2013 at 2:32 pm #508248I was able to get both the masthead and footer to display full width.
The problem is only the footer remains full width on mobile devices. The masthead does not retain its full width.
here’s a preview:
http://www.imagebam.com/image/33a2c1280156398Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
October 7, 2013 at 4:54 pm #508264Right now its difficult to guess the issue and give solution to you. It would be great if you can include url of your site, it would help to understand the issue and give you specific answers.
October 7, 2013 at 10:25 pm #508297I will send you a private message
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
October 8, 2013 at 3:44 am #508319<em>@joomdude808 392705 wrote:</em><blockquote>I will send you a private message</blockquote>
You can fix this problem by css as below
Open templates/ja_argo/css/bootstrap-responsive.css file
Add new script
@media (max-width: 767px) {
.t3-module .custom {
margin-left: -20px !important;
margin-right: -20px !important;
}
.custom .container {
margin-left: 5px !important;
margin-right: 5px !important;
}
}AuthorPostsViewing 8 posts - 1 through 8 (of 8 total)This topic contains 8 replies, has 2 voices, and was last updated by Ninja Lead 11 years, 1 month ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Full Page Width Modules
Viewing 8 posts - 1 through 8 (of 8 total)