Viewing 15 posts - 16 through 30 (of 31 total)
  • Author
    Posts
  • jooservices Friend
    #691954

    Hi there
    Sorry delayed your ticket. I’ll try to check and reply you in asap.

    Thank you,
    Viet Vu

    jooservices Friend
    #749467

    Hi there
    Sorry delayed your ticket. I’ll try to check and reply you in asap.

    Thank you,
    Viet Vu

    johnnys Friend
    #692338

    Hi is there any update on this?

    johnnys Friend
    #749597

    Hi is there any update on this?

    jooservices Friend
    #692340

    Hi there
    Please open
    templatesubertplshome-university.php

    Replace by

    <?php
    /**
    * ------------------------------------------------------------------------
    * Uber Template
    * ------------------------------------------------------------------------
    * Copyright (C) 2004-2011 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
    * @license - Copyrighted Commercial Software
    * Author: J.O.O.M Solutions Co., Ltd
    * Websites: http://www.joomlart.com - http://www.joomlancers.com
    * This file may not be redistributed in whole or significant part.
    * ------------------------------------------------------------------------
    */

    defined('_JEXEC') or die;
    ?>

    <!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') ?>
    <?php $this->addCss('layouts/university') ?>
    </head>

    <body class="home-university">

    <div class="t3-wrapper"> <!-- Need this wrapper for off-canvas menu. Remove if you don't use of-canvas -->

    <div class="container">
    <?php $this->loadBlock('header') ?>

    <?php $this->loadBlock('home') ?>

    <?php if($this->hasMessage()) : ?>
    <div class="container">
    <jdoc:include type="message" />
    </div>
    <?php endif ?>

    <?php $this->loadBlock('footer') ?>
    </div>
    </div>

    </body>

    </html>

    And apply css for .t3-wrapper

    .t3-wrapper {
    background: red;
    }

    https://www.dropbox.com/s/d21k0p9u11fz4nb/2015-09-24_18-25-28.png?dl=0
    But please consider you are modify template design concept. It would be override with template upgrade.

    Thank you,
    Viet Vu

    jooservices Friend
    #749599

    Hi there
    Please open
    templatesubertplshome-university.php

    Replace by

    <?php
    /**
    * ------------------------------------------------------------------------
    * Uber Template
    * ------------------------------------------------------------------------
    * Copyright (C) 2004-2011 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
    * @license - Copyrighted Commercial Software
    * Author: J.O.O.M Solutions Co., Ltd
    * Websites: http://www.joomlart.com - http://www.joomlancers.com
    * This file may not be redistributed in whole or significant part.
    * ------------------------------------------------------------------------
    */

    defined('_JEXEC') or die;
    ?>

    <!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') ?>
    <?php $this->addCss('layouts/university') ?>
    </head>

    <body class="home-university">

    <div class="t3-wrapper"> <!-- Need this wrapper for off-canvas menu. Remove if you don't use of-canvas -->

    <div class="container">
    <?php $this->loadBlock('header') ?>

    <?php $this->loadBlock('home') ?>

    <?php if($this->hasMessage()) : ?>
    <div class="container">
    <jdoc:include type="message" />
    </div>
    <?php endif ?>

    <?php $this->loadBlock('footer') ?>
    </div>
    </div>

    </body>

    </html>

    And apply css for .t3-wrapper

    .t3-wrapper {
    background: red;
    }

    https://www.dropbox.com/s/d21k0p9u11fz4nb/2015-09-24_18-25-28.png?dl=0
    But please consider you are modify template design concept. It would be override with template upgrade.

    Thank you,
    Viet Vu

    johnnys Friend
    #692345

    Can I not create a template override? This way an upgrade won’t effect it?

    johnnys Friend
    #749604

    Can I not create a template override? This way an upgrade won’t effect it?

    jooservices Friend
    #692346

    Hi there
    You can use local. But the important thing here is you are changed concept of design 🙂 .
    Anyways you can apply as my above code if needed but into /local/tpls/home-university.php

    Thank you,
    Viet Vu

    jooservices Friend
    #749605

    Hi there
    You can use local. But the important thing here is you are changed concept of design 🙂 .
    Anyways you can apply as my above code if needed but into /local/tpls/home-university.php

    Thank you,
    Viet Vu

    johnnys Friend
    #692347

    This isn’t working for me, when I apply your changes my whole page is red, as follows;

    I’m actually using the default.php nit hime-university.php however I mave made the same changes. My default.php looks as follows;

    <?php
    /**
    * ————————————————————————
    * Uber Template
    * ————————————————————————
    * Copyright (C) 2004-2011 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
    * @license – Copyrighted Commercial Software
    * Author: J.O.O.M Solutions Co., Ltd
    * Websites: http://www.joomlart.comhttp://www.joomlancers.com
    * This file may not be redistributed in whole or significant part.
    * ————————————————————————
    */

    defined(‘_JEXEC’) or die;
    ?>

    <!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’) ?>
    <?php $this->addCss(‘layouts/docs’) ?>
    </head>

    <body>

    <div class=”t3-wrapper”> <!– Need this wrapper for off-canvas menu. Remove if you don’t use of-canvas –>
    <div class=”container”>
    <?php $this->loadBlock(‘header’) ?>

    <?php $this->loadBlock(‘masthead’) ?>

    <?php $this->loadBlock(‘submenu’) ?>

    <?php $this->loadBlock(‘mainbody’) ?>

    <?php $this->loadBlock(‘spotlight-1’) ?>

    <?php $this->loadBlock(‘full-width’) ?>

    <?php $this->loadBlock(‘footer’) ?>
    </div>

    </div>

    </body>

    </html>

    johnnys Friend
    #749606

    This isn’t working for me, when I apply your changes my whole page is red, as follows;

    I’m actually using the default.php nit hime-university.php however I mave made the same changes. My default.php looks as follows;

    <?php
    /**
    * ————————————————————————
    * Uber Template
    * ————————————————————————
    * Copyright (C) 2004-2011 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
    * @license – Copyrighted Commercial Software
    * Author: J.O.O.M Solutions Co., Ltd
    * Websites: http://www.joomlart.comhttp://www.joomlancers.com
    * This file may not be redistributed in whole or significant part.
    * ————————————————————————
    */

    defined(‘_JEXEC’) or die;
    ?>

    <!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’) ?>
    <?php $this->addCss(‘layouts/docs’) ?>
    </head>

    <body>

    <div class=”t3-wrapper”> <!– Need this wrapper for off-canvas menu. Remove if you don’t use of-canvas –>
    <div class=”container”>
    <?php $this->loadBlock(‘header’) ?>

    <?php $this->loadBlock(‘masthead’) ?>

    <?php $this->loadBlock(‘submenu’) ?>

    <?php $this->loadBlock(‘mainbody’) ?>

    <?php $this->loadBlock(‘spotlight-1’) ?>

    <?php $this->loadBlock(‘full-width’) ?>

    <?php $this->loadBlock(‘footer’) ?>
    </div>

    </div>

    </body>

    </html>

    johnnys Friend
    #692352

    Now resolved. I had to add a class to the container.

    johnnys Friend
    #749611

    Now resolved. I had to add a class to the container.

    jooservices Friend
    #692362

    Hi there
    So … everything is solved ?
    Yes. You also need css for wrapper class 🙂

    Thank you,
    Viet Vu

Viewing 15 posts - 16 through 30 (of 31 total)

This topic contains 31 replies, has 2 voices, and was last updated by  jooservices 9 years, 2 months ago.

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