We moved to new unified forum!

Please post all new support queries in our New Forum.

T3 Community Discussion & Support

Let's build the best free Joomla template framework, together!
  1. Tobias Conrad
  2. General Discussion
  3. Monday, 12 May 2014
  4.  Subscribe via email
hi there,

i what to create a nice styled page with only one image map in one modul.
Also the menu is included in image map.:D
Where can i disable all other stuff on page?

i was thinking of m2c modul to component but it is only half way.:)

Help would be very nice.
Comment
There are no comments made yet.
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Tobias,

I don't see the image in the URL you sent me. Is there anything wrong?

Gardner.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 1
Accepted Answer Pending Moderation
0
Votes
Undo
HI Gardner,

still working on fullscreen of one modul on this page:
http://paulmaerz.leupus.de/index.php/revolution2
now with styles (Style e.g. light green toogler on the left) etc. included.

incredientials are the same as sent via PM.

with only this in head i lost style css of the template and all other things.
<head>
<jdoc:include type="head" ></jdoc:include>
</head>


when i add head:
<head>
<jdoc:include type="head" ></jdoc:include>
<?php $this->loadBlock ('head') ?>
</head>


i got a big space: see picture "unknown" please.
html output: see Schnappschuss (2014-06-10 10.58.00).png please
Attachments (2)
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 2
Accepted Answer Pending Moderation
0
Votes
Undo
Yeah, seems we had misunderstanding :(.

By default, the footer block loads spotlight block and you can re-size positions in the spotlight block in responsive layouts. Open the template manager, in the Layout tab, select Responsive layout then select Extra Small (it's mobile layout) then re-size positions in footer blocks. Please check attached image to see how to configure.

P/S: the account you gave me is not accessible (the Administrator password) so I can not access and configure for you, but it's quite easy and I think you can manage it.

Gardner.
Attachments (1)
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 3
Accepted Answer Pending Moderation
0
Votes
Undo
here the green footer is not responsive.
http://awesomescreenshot.com/0c72ucwc1d
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 4
Accepted Answer Pending Moderation
0
Votes
Undo
I can not access your administrator with the given account.

Anyway, I have checked your site, the footer is responsive. I try to delete the live chat and change
<div class="col-md-12 col-xs-8 col-sm-8">
to
<div class="col-md-12 col-xs-12 col-sm-12">
, it looks great.

If it's possible, I suggest to turn off the live chat in mobile. You can view http://www.joomlart.com/ on mobile, we also turn live chat off in mobile.

Gardner.
Attachments (1)
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 5
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Tobias,

For the question related to responsive of footer: https://www.santegra.de/best/de/

As I can not give you solution in message (code can not be shown), so I will give you solution here. The problem with responsive of footer is from your live chat, it overrides your footer.

Please open the "footer.php" file in "tempalates/t3_bs3_blank/tpls/blocks", change
<div class="col-md-12">
to
<div class="col-md-12 col-xs-8 col-sm-8">


Gardner.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 6
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Tobias,

There is something wrong with your customization, as when I check, your site does not load the custom.css anymore. I fixed and it works now. Add css rule to the custom.css and it will work.

Gardner.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 7
Accepted Answer Pending Moderation
0
Votes
Undo
Cool fullscreen.

IN Footer small white stripe left.

One big thing:
We have a problem to show onhover transparent picture in ct-modul.
it does not become transparent only with white background.
The whole page is a big imagemap.
What can we do?

http://paulmaerz.leupus.de/index.php/revolution

Thank you ;-)
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 8
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Tobias,

Thanks for sending all required info.

I fixed your problem, now the layout is now 100% full screen. In fact I can fix it very simple by adding css rule directly to the <body> of the default.php but it's hard for you to customize style next time so I fix it as below that can help you customize style of template easier.

#1: create custom.css file in the "/templates/t3_bs3_blank/css" folder then add the following css rule:

body {
margin: 0;
{


#2: create header-1.php file in the "/templates/t3_bs3_blank/tpls/blocks" folder. The file is to load the custom.css file.

<?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
// CUSTOM CSS
if (is_file(T3_TEMPLATE_PATH . '/css/custom.css')) {
$this->addStyleSheet(T3_TEMPLATE_URL . '/css/custom.css');
}
?>


#3: Load the header-1 to the default.php file.

<?php $this->loadBlock('header-1') ?>
<?php $this->loadBlock('spotlight-1') ?>


Next time, if you want to customize style of the template, you can add css rules to the custom.css file.

Gardner.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 9
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Tobias,

The 1% you mean is the padding-left and padding-right. You can customize it, just debug and you see how to customize it (even remove it).

Gardner.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 10
Accepted Answer Pending Moderation
0
Votes
Undo
Yes. in picture it shows the missing 1%. you to get 100%
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 11
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Tobias,

"now it is 99% fullscreen. my remaining position is only spotlight1. How can i get the last 1%?"

What do you mean "1%" here? It's hard for me to get your point, could you please provide screenshot?

P/S: also check my attached image, hope it's what you mean.

Regards

Gardner.
Attachments (1)
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 12
Accepted Answer Pending Moderation
0
Votes
Undo
HI Gardner,

now it is 99% fullscreen. my remaining position is only spotlight1.
How can i get the last 1%?
Here are the files i changed (default.php) and looked (spotlight1.php):

thanks for helping.

default.php

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" />
</head>

<body>


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



</body>

</html>

spotlight1.php
defined('_JEXEC') or die;
?>

<?php if ($this->checkSpotlight('spotlight-1', 'position-1, position-2, position-3, position-4')) : ?>
<!-- SPOTLIGHT 1 -->
<div class="container t3-sl t3-sl-1">
<?php $this->spotlight('spotlight-1', 'position-1, position-2, position-3, position-4') ?>
</div>
<!-- //SPOTLIGHT 1 -->
<?php endif ?>
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 13
Accepted Answer Pending Moderation
0
Votes
Undo
HI Tobias Conrad,

To have one module in a layout, you just need to open the layout, keep the loading header block (to keep main menu as you expect), delete other loading block then add loading new block with one module inside. After that go to the template manager, open Template style then assign to the layout you just customized.

Here is how-to docs to work with T3 template layout system: http://t3-framework.org/documentation/bs3-layout-system

Gardner.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 14
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.