-
AuthorPosts
-
funci Friend
funci
- Join date:
- February 2008
- Posts:
- 246
- Downloads:
- 29
- Uploads:
- 64
- Thanks:
- 93
- Thanked:
- 5 times in 2 posts
February 25, 2015 at 8:52 am #204104Hi guys,
When I choose layout “home” green stripe where is menu is transparent, or maybe is better to say that slideshow is behind that stripe and menu.
But I also want to have slideshow in layout “blog” with the same transparency efect like in layout “home”. There are slideshow pictures below that stripe and menu.
By default that block where is slideshow is “masthead” and I’ve changed to “slideshow” position.What to do?
-
funci Friend
funci
- Join date:
- February 2008
- Posts:
- 246
- Downloads:
- 29
- Uploads:
- 64
- Thanks:
- 93
- Thanked:
- 5 times in 2 posts
February 26, 2015 at 10:28 am #560806Hi all,
Somebody knows how to solve this?
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
February 28, 2015 at 4:10 pm #561013You can try to use my solution below
Create templates/ja_hotel/css/custom.css file and add new script below
.t3-wrapper .t3-header:after {
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
content: "";
background-color: #3f51b5 ;
opacity: 0.8;
filter: alpha(opacity=80);
}funci Friendfunci
- Join date:
- February 2008
- Posts:
- 246
- Downloads:
- 29
- Uploads:
- 64
- Thanks:
- 93
- Thanked:
- 5 times in 2 posts
February 28, 2015 at 10:20 pm #561026Hi Ninja,
I’ve already tried to do like that, but without success! :((
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
March 2, 2015 at 3:56 am #561160<em>@funci 460793 wrote:</em><blockquote>Hi Ninja,
I’ve already tried to do like that, but without success! :((</blockquote>
Can you please give me URL of your site? I will check it directly on your site.
funci Friendfunci
- Join date:
- February 2008
- Posts:
- 246
- Downloads:
- 29
- Uploads:
- 64
- Thanks:
- 93
- Thanked:
- 5 times in 2 posts
March 2, 2015 at 10:38 pm #561291Hi Ninja,
I’ve sent you link in PM
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
March 3, 2015 at 3:26 am #561324<em>@funci 461139 wrote:</em><blockquote>Hi Ninja,
I’ve sent you link in PM</blockquote>
Because the slideshow module appears with masthead position and it did not get style likes as slideshow position. In this case, you have to change the slideshow module is back slideshow position on your site or you can pm me backend of your site. I will help you to check it directly on your site.
funci Friendfunci
- Join date:
- February 2008
- Posts:
- 246
- Downloads:
- 29
- Uploads:
- 64
- Thanks:
- 93
- Thanked:
- 5 times in 2 posts
March 3, 2015 at 9:06 am #561370Hmmm, I don’t know are we thinking on the same, but I’ve already tried something like that.
I will send you PM.Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
March 4, 2015 at 11:27 am #561573<em>@funci 461228 wrote:</em><blockquote>Hmmm, I don’t know are we thinking on the same, but I’ve already tried something like that.
I will send you PM.</blockquote>I fixed the problem directly on your site, you can check it again let me know if it helps
1 user says Thank You to Ninja Lead for this useful post
funci Friendfunci
- Join date:
- February 2008
- Posts:
- 246
- Downloads:
- 29
- Uploads:
- 64
- Thanks:
- 93
- Thanked:
- 5 times in 2 posts
March 4, 2015 at 5:55 pm #561630Great!
THX a lot Ninja! 😀And I am trying to find out what you has done? Can you tell me where was the problem?
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
March 5, 2015 at 8:00 am #561699I fixed it with the solution below
Open templates/ja_hotel/tpls/blog.php file
find and change
<?php
/**
*------------------------------------------------------------------------------
* @package T3 Framework for Joomla!
*------------------------------------------------------------------------------
* @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @authors JoomlArt, JoomlaBamboo, (contribute to this project at github
* & Google group to become co-author)
* @google group: https://groups.google.com/forum/#!forum/t3fw
* @link: http://t3-framework.org
*------------------------------------------------------------------------------
*/defined('_JEXEC') or die;
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"
class='layout-blog <jdoc:include type="pageclass" />'><head>
<jdoc:include type="head" />
<?php $this->loadBlock('head') ?>
<?php $this->addCss('blog') ?>
</head><body>
<div class="blog t3-wrapper"> <!-- Need this wrapper for off-canvas menu. Remove if you don't use of-canvas -->
<?php $this->loadBlock('topbar') ?><?php $this->loadBlock('header') ?>
<?php $this->loadBlock('masthead') ?>
to
<?php
/**
*------------------------------------------------------------------------------
* @package T3 Framework for Joomla!
*------------------------------------------------------------------------------
* @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @authors JoomlArt, JoomlaBamboo, (contribute to this project at github
* & Google group to become co-author)
* @google group: https://groups.google.com/forum/#!forum/t3fw
* @link: http://t3-framework.org
*------------------------------------------------------------------------------
*/defined('_JEXEC') or die;
$hasSlideshow = '';
if ($this->countModules('slideshow')) :
$hasSlideshow = 'has-slideshow ';
endif;
?><!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"
class='<jdoc:include type="pageclass" />'><head>
<jdoc:include type="head" />
<?php $this->loadBlock('head') ?>
</head><body class="<?php echo $hasSlideshow; ?>">
<div class="t3-wrapper"> <!-- Need this wrapper for off-canvas menu. Remove if you don't use of-canvas -->
<?php $this->loadBlock('topbar') ?><?php $this->loadBlock('header') ?>
<?php $this->loadBlock('slideshow') ?>
1 user says Thank You to Ninja Lead for this useful post
-
AuthorPosts
Viewing 12 posts - 1 through 12 (of 12 total)This topic contains 12 replies, has 2 voices, and was last updated by funci 9 years, 8 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum