- Posts: 10
- Thank you received: 0
Effects-Rotator dissapears in Style 2 and Style 3
-
Bewrong
Inactive member - Topic Author
- New Member
Less
More
13 years 4 months ago - 13 years 4 months ago #8603
by Bewrong
Effects-Rotator dissapears in Style 2 and Style 3 was created by Bewrong
Hi All,
i've bought the Hotcars-Template yesterday and I got some problems with this one. First of all I can't install two extentions because "folder not exist".
I don't need them so this error is not so important to me.
But...I've installed the hot-effects-rotator on module position "user2" and its works fine if I use the tempate "custom"-settings or template-style 1.
If I switch to style 2,3 or 4 the hot-effects-rotator on module-position "user2" disappears! Module positions "user2_1" etc. don't work.
I need some help please because I would like to use the green settings for my website. I have tried out IE9, Modzilla, Google Chrome and Opera...the same error everywhere.
AND...the fonts (size etc.) of the Topmenu are different at each browser. Why???
Kind regards from Germany
Bewrong
i've bought the Hotcars-Template yesterday and I got some problems with this one. First of all I can't install two extentions because "folder not exist".
I don't need them so this error is not so important to me.
But...I've installed the hot-effects-rotator on module position "user2" and its works fine if I use the tempate "custom"-settings or template-style 1.
If I switch to style 2,3 or 4 the hot-effects-rotator on module-position "user2" disappears! Module positions "user2_1" etc. don't work.
I need some help please because I would like to use the green settings for my website. I have tried out IE9, Modzilla, Google Chrome and Opera...the same error everywhere.
AND...the fonts (size etc.) of the Topmenu are different at each browser. Why???
Kind regards from Germany
Bewrong
Last edit: 13 years 4 months ago by Bewrong.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 4 months ago #8615
by ivan.milic
Replied by ivan.milic on topic Re: Effects-Rotator dissapears in Style 2 and Style 3
HI,
your first problem should not happen. What joomla version do you use 1.5 or 1.6.
Can you give us live backed access so we could check (use "Report To Moderator").
About second problem, you probably mean on difference that is regular thing - browsers just don't show it that same - example in IE always little bolder.
Sometimes browsers use different default values. You can put in begging of template_css.css:
*{
font-family:Ariel;
font-size:1em;
}
* will hit all elements that have no explicit exact properties deceleration(font-family and font-size in attachment, values are also examples)
your first problem should not happen. What joomla version do you use 1.5 or 1.6.
Can you give us live backed access so we could check (use "Report To Moderator").
About second problem, you probably mean on difference that is regular thing - browsers just don't show it that same - example in IE always little bolder.
Sometimes browsers use different default values. You can put in begging of template_css.css:
*{
font-family:Ariel;
font-size:1em;
}
* will hit all elements that have no explicit exact properties deceleration(font-family and font-size in attachment, values are also examples)
The following user(s) said Thank You: Bewrong
Please Log in to join the conversation.
-
Bewrong
Inactive member - Topic Author
- New Member
Less
More
- Posts: 10
- Thank you received: 0
13 years 4 months ago #8619
by Bewrong
Replied by Bewrong on topic Re: Effects-Rotator dissapears in Style 2 and Style 3
Thank you for your quick support! GREAT! I've sent you the login for the page.
Kind regards,
Bewrong
Kind regards,
Bewrong
Please Log in to join the conversation.
-
Bewrong
Inactive member - Topic Author
- New Member
Less
More
- Posts: 10
- Thank you received: 0
13 years 4 months ago #8620
by Bewrong
Replied by Bewrong on topic Re: Effects-Rotator dissapears in Style 2 and Style 3
Additional a little problem on the mainpage (inset):
As you can see there is an little bar in the inset (under the headline of the contents) which appears when I switch off the pdf mail etc. buttons.
How can I remove this bar?
Thx.
As you can see there is an little bar in the inset (under the headline of the contents) which appears when I switch off the pdf mail etc. buttons.
How can I remove this bar?
Thx.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 4 months ago #8637
by ivan.milic
Replied by ivan.milic on topic Re: Effects-Rotator dissapears in Style 2 and Style 3
Hi I solved your problems,
For anyone that can run into this post looking for solution. Open index.php of thempalte and replace :
$showuser2 = $this->countModules('user2');
with
$showuser2 = $this->countModules('user2') || $this->countModules('user2_1') || $this->countModules('user2_2') || $this->countModules('user2_3');
for the other problem showing only "|" in author line:
open : templates\hot_cars\html\com_content\frontpage\default_item.php
and replace:
with:
You can also do this for:
templates\hot_cars\html\com_content\articles\default.php
For anyone that can run into this post looking for solution. Open index.php of thempalte and replace :
$showuser2 = $this->countModules('user2');
with
$showuser2 = $this->countModules('user2') || $this->countModules('user2_1') || $this->countModules('user2_2') || $this->countModules('user2_3');
for the other problem showing only "|" in author line:
open : templates\hot_cars\html\com_content\frontpage\default_item.php
and replace:
Code:
<div class="author_line"><span class="small"><?php if (($this->params->get('show_author')) && ($this->article->author != "")) : ?><?php JText::printf( 'Written by', ($this->escape($this->article->created_by_alias) ? $this->escape($this->article->created_by_alias) : $this->escape($this->article->author)) ); ?><?php endif; ?></span><?php if ($this->params->get('show_create_date')) : ?> | <span class="createdate"><?php echo JHTML::_('date', $this->article->created, JText::_('DATE_FORMAT_LC4')); endif; ?>
|
<?php if ($this->params->get('show_email_icon')) : echo JHTML::_('icon.email', $this->article, $this->params, $this->access); endif; ?>
<?php if ( $this->params->get( 'show_print_icon' )) : echo JHTML::_('icon.print_popup', $this->article, $this->params, $this->access); endif; ?>
<?php if ($this->params->get('show_pdf_icon')) : echo JHTML::_('icon.pdf', $this->article, $this->params, $this->access); endif; ?></span></div>
with:
Code:
<div class="author_line"><span class="small"><?php if (($this->params->get('show_author')) && ($this->article->author != "")) : ?><?php JText::printf( 'Written by', ($this->escape($this->article->created_by_alias) ? $this->escape($this->article->created_by_alias) : $this->escape($this->article->author)) );echo'|'; ?><?php endif; ?></span><?php if ($this->params->get('show_create_date')) : ?> <span class="createdate"><?php echo JHTML::_('date', $this->article->created, JText::_('DATE_FORMAT_LC4')).'|'; endif; ?>
<?php if ($this->params->get('show_email_icon')) : echo JHTML::_('icon.email', $this->article, $this->params, $this->access); endif; ?>
<?php if ( $this->params->get( 'show_print_icon' )) : echo JHTML::_('icon.print_popup', $this->article, $this->params, $this->access); endif; ?>
<?php if ($this->params->get('show_pdf_icon')) : echo JHTML::_('icon.pdf', $this->article, $this->params, $this->access); endif; ?></span></div>
You can also do this for:
templates\hot_cars\html\com_content\articles\default.php
The following user(s) said Thank You: Bewrong
Please Log in to join the conversation.
-
Bewrong
Inactive member - Topic Author
- New Member
Less
More
- Posts: 10
- Thank you received: 0
13 years 4 months ago #8648
by Bewrong
Replied by Bewrong on topic Re: Effects-Rotator dissapears in Style 2 and Style 3
WOOAH! This really is a GREAT service!
Thanky you very much for this GREAT and quick support!
Kind regards from Germany,
Bewrong
Thanky you very much for this GREAT and quick support!
Kind regards from Germany,
Bewrong
Please Log in to join the conversation.
Time to create page: 0.367 seconds