Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • funci Friend
    #204104

    Hi 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?


    1. transparency1
    2. transparency0
    funci Friend
    #560806

    Hi all,

    Somebody knows how to solve this?

    Ninja Lead Moderator
    #561013

    You 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 Friend
    #561026

    Hi Ninja,

    I’ve already tried to do like that, but without success! :((

    Ninja Lead Moderator
    #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 Friend
    #561291

    Hi Ninja,

    I’ve sent you link in PM

    Ninja Lead Moderator
    #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 Friend
    #561370

    Hmmm, 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 Moderator
    #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

    funci Friend
    #561630

    Great!
    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 Moderator
    #561699

    I 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') ?>

    funci Friend
    #561749

    THX again! 🙂

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, 2 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum