hi ciaran
please have a look here:
http://www.claudia-hostettler.ch/joomla/de/
I have two questions:
1. How can I delete the shadow on the slideshow on the right (or add a shadow on the module picture on the left)? It should look the same.
2. I don't need in the footer area so much blue field. How can I reduce it?
thank you again for your assistance.
regards
grit
- mediafrog
- Commercial Templates
- Monday, 07 December 2015
- Subscribe via email
Hi Grit
1. To remove the shadow you can add the following to the Custom CSS field of your templates parameters...
2. As you are not using the base module position you can remove this area by adding the following to your Custom CSS field...
Ciarán
1. To remove the shadow you can add the following to the Custom CSS field of your templates parameters...
.slideshowcontainer {
box-shadow: none;
}
2. As you are not using the base module position you can remove this area by adding the following to your Custom CSS field...
#container_base {
display: none;
}
Ciarán
- more than a month ago
- Commercial Templates
- # 1
hi ciaran,
that works fine, thank you.
again another question: I would like to show the language selection on hornaw position right from the main menu. Can you help me?
thanks
grit
that works fine, thank you.
again another question: I would like to show the language selection on hornaw position right from the main menu. Can you help me?
thanks
grit
- more than a month ago
- Commercial Templates
- # 2
Hi Grit
Your best option would be to create a new module position in the header area of your template to accommodate your language module. For details on doing so may I suggest the following article... http://www.joomla51.com/tutorials/item/creating-a-new-module-position-in-the-header-area-of-your-template
Ciarán
Your best option would be to create a new module position in the header area of your template to accommodate your language module. For details on doing so may I suggest the following article... http://www.joomla51.com/tutorials/item/creating-a-new-module-position-in-the-header-area-of-your-template
Ciarán
- more than a month ago
- Commercial Templates
- # 3
Hi Ciaran,
it's me again. Hope you have had nice christmas days!
please have a look here:
http://www.claudia-hostettler.ch/joomla/de/
I want to show the subtitles under the logo in different languages, it means on the main page it is in german (Pianistin), when you click on the french flag it will be in french (pianiste) and so on. Is it possible to realize this?
thanks again.
regards
grit
it's me again. Hope you have had nice christmas days!
please have a look here:
http://www.claudia-hostettler.ch/joomla/de/
I want to show the subtitles under the logo in different languages, it means on the main page it is in german (Pianistin), when you click on the french flag it will be in french (pianiste) and so on. Is it possible to realize this?
thanks again.
regards
grit
- more than a month ago
- Commercial Templates
- # 4
Hi Grit
One option would be to create a template style for each of your languages. You would then apply each style to a language, editing the logo in each to correspond. For details on creating multiple template styles may I suggest the following article... http://www.joomla51.com/tutorials/item/creating-multiple-template-styles
Ciarán
One option would be to create a template style for each of your languages. You would then apply each style to a language, editing the logo in each to correspond. For details on creating multiple template styles may I suggest the following article... http://www.joomla51.com/tutorials/item/creating-multiple-template-styles
Ciarán
- more than a month ago
- Commercial Templates
- # 5
Hi ciaran,
I have a tricky question to the message above.
Now I use a logo with three languages. Is it possible to put on each language the url of the languages of the website? for example you click on pianiste you come to the french site.
I tried to set the urls on the logo with slices in photoshop, this works in html, but how can I integrate it in my template?
Do you have any idea?
regards
grit
I have a tricky question to the message above.
Now I use a logo with three languages. Is it possible to put on each language the url of the languages of the website? for example you click on pianiste you come to the french site.
I tried to set the urls on the logo with slices in photoshop, this works in html, but how can I integrate it in my template?
Do you have any idea?
regards
grit
- more than a month ago
- Commercial Templates
- # 6
Hi Grit
May I suggest sending temporary administration access to your Joomla installation to info@joomla51.com and we will examine this issue further. For our reference please paste a link to this post in your email.
Ciarán
May I suggest sending temporary administration access to your Joomla installation to info@joomla51.com and we will examine this issue further. For our reference please paste a link to this post in your email.
Ciarán
- more than a month ago
- Commercial Templates
- # 7
Thank you
Your logo should be now linking to the current language. In your templates header.php (../templates/j51_pianoforte/php/layouts/header.php) we changed the following...
To....
Ciarán
Your logo should be now linking to the current language. In your templates header.php (../templates/j51_pianoforte/php/layouts/header.php) we changed the following...
<?php if($this->params->get('logoImage') == '1') : ?>
<div class="logo"> <a href="/index.php" title="<?php echo $siteName; ?>"><span>
<?php if($this->params->get('logoimagefile') == '') : ?>
<img style="display: block;" src="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template?>/images/logo.png" alt="Logo" />
<?php elseif($this->params->get('logoimagefile') != '') : ?>
<img style="display: block;" src="/<?php echo $this->baseurl ?>/<?php echo $logoimagefile; ?>" alt="Logo" />
<?php endif; ?>
</span></a> </div>
<?php else : ?>
To....
<?php if($this->params->get('logoImage') == '1') : ?>
<div class="logo"> <a href="/forum?lt;?php_$lang_=%20JFactory::getLanguage();%20echo%20$lang->getTag();_?=>=" title="<?php echo $siteName; ?>"><span>
<?php if($this->params->get('logoimagefile') == '') : ?>
<img style="display: block;" src="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template?>/images/logo.png" alt="Logo" />
<?php elseif($this->params->get('logoimagefile') != '') : ?>
<img style="display: block;" src="/<?php echo $this->baseurl ?>/<?php echo $logoimagefile; ?>" alt="Logo" />
<?php endif; ?>
</span></a> </div>
<?php else : ?>
Ciarán
- more than a month ago
- Commercial Templates
- # 8
hi Ciaran,
thank you very much for your work.
I think there was a missunderstanding. My Idea was to set links on the logo image over the part "Pianistin" = German Language; "pianiste" = french language; "pianista" = spanish language. But in the meantime I think this is not possible to realize.
regards
grit
thank you very much for your work.
I think there was a missunderstanding. My Idea was to set links on the logo image over the part "Pianistin" = German Language; "pianiste" = french language; "pianista" = spanish language. But in the meantime I think this is not possible to realize.
regards
grit
- more than a month ago
- Commercial Templates
- # 9
Hi Grit
One option would be to create a template style for each language. You can then set each style with the logo of your choice and assign it to your corresponding language. For details on creating multiple template styles may I suggest the following article... http://www.joomla51.com/tutorials/item/creating-multiple-template-styles
Ciarán
One option would be to create a template style for each language. You can then set each style with the logo of your choice and assign it to your corresponding language. For details on creating multiple template styles may I suggest the following article... http://www.joomla51.com/tutorials/item/creating-multiple-template-styles
Ciarán
- more than a month ago
- Commercial Templates
- # 10
hi ciaran,
please have a look here:
http://claudia-hostettler.ch/de/
on smartphone the language menus are missing: when you klick on FR, the menu is in German, and on ES the same problem. And when I make my browser on my PC smaller, also. How can I fix it?
Hope you can help me again.
best regards
grit
please have a look here:
http://claudia-hostettler.ch/de/
on smartphone the language menus are missing: when you klick on FR, the menu is in German, and on ES the same problem. And when I make my browser on my PC smaller, also. How can I fix it?
Hope you can help me again.
best regards
grit
- more than a month ago
- Commercial Templates
- # 11
Hello
Select a Template style in your 'Template Manager' (Eg. PianoForte - Default) and duplicate it for each language you want. In each of the styles then select the menus to be displayed for that language. You can then set that template style to the language via the 'Languages' dropdown or by assigning the correct menu items via the 'Menu Assignment' tab.
Ciarán
Select a Template style in your 'Template Manager' (Eg. PianoForte - Default) and duplicate it for each language you want. In each of the styles then select the menus to be displayed for that language. You can then set that template style to the language via the 'Languages' dropdown or by assigning the correct menu items via the 'Menu Assignment' tab.
Ciarán
- more than a month ago
- Commercial Templates
- # 12
- Page :
- 1
There are no replies made for this post yet.
Be one of the first to reply to this post!
Be one of the first to reply to this post!
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here. Register Here »