-
AuthorPosts
-
May 7, 2014 at 5:26 pm #197497
Hi, I want to put full width bar image at the bottom of screen. That image bar will be sticky and will be display on every page. How to make this happen? TQ
TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
May 7, 2014 at 5:27 pm #534041So that we can try to best assist you, please provide the url of the site you’re working on,
as well as provide a screenshot mock-up image of what it is you are wanting to accomplish.May 8, 2014 at 3:21 am #534099Actually my development is still on localhost. Below is example image bar (red) that i need to put at bottom of screen.
Nazario A FriendNazario A
- Join date:
- April 2013
- Posts:
- 1183
- Downloads:
- 0
- Uploads:
- 406
- Thanks:
- 91
- Thanked:
- 284 times in 263 posts
May 9, 2014 at 9:56 am #534331@ jemir,
Please try tweak below:
– Open the file: /templates/your_template_name/tpls/blocks/footer.php then add this rule: http://prntscr.com/3hkqf1
<section class="my-company">
<div class="container">
<div class="row">
<div class="col-md-8 company-name">
<?php echo JText::_('COMPANY_NAME') ?>
</div>
<div class="col-md-4 company-logo">
<a class="company-logo" href="http://t3-framework.org" target="_blank">
<img src="your_link_logo" alt="Smiley face" height="42" width="42">
</a>
</div>
</div>
</div>
</section>– Open the file: /language/en-GB/en-GB.tpl_ja_sugite.ini then add this rule: http://prntscr.com/3hkqhp
;Custom
COMPANY_NAME = "Your Company Name"You can change company’s name in red.
– Create a new file called “custom.css” in the /templates/your_template_name/css/ folder, then add this rule:
.my-company {
border-top: 1px solid rgba(255, 255, 255, 0.05);;
position: fixed;
bottom: 0;
width: 100%;
background: #2D3E50
}
.my-company .row .company-name {
text-align: left;
padding: 15px 0;
}
.my-company .row .company-logo {
text-align: right;
padding: 10px 0;
}You should see this result:
-
1 user says Thank You to Nazario A for this useful post
AuthorPostsViewing 4 posts - 1 through 4 (of 4 total)This topic contains 4 replies, has 3 voices, and was last updated by Nazario A 10 years, 6 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum