hi
I'm creating my website template with willow
I need some help.
On the home page I created the images with corousel module can I animate the images with Ken Burns effect?
On the template can I see the logo and slogan text?
How can I change the size of a title of an article, and center-aligned.
I created a page with grid gallery can I see the caption text without putting the title, or can I scale the size of the caption title.
Thanks again for your patience.
paolo
- paolorusso
-
- Commercial Templates
- Thursday, 04 August 2016
- Subscribe via email
Hello
1. Sorry to say this option is not available within the template or Joomla51 modules.
2. Just to confirm. you wish to display a logo image along with the slogan text?
3. To amend try adding the following to the Custom CSS field of your templates parameters (edit to taste)...
4. To hide the GridGallery title you can add the following to the Custom CSS field of your templates parameters...
Ciarán
1. Sorry to say this option is not available within the template or Joomla51 modules.
2. Just to confirm. you wish to display a logo image along with the slogan text?
3. To amend try adding the following to the Custom CSS field of your templates parameters (edit to taste)...
.item-title, .page-header {
font-size: 38px;
text-align: center;
}
4. To hide the GridGallery title you can add the following to the Custom CSS field of your templates parameters...
.j51gridgallery h3 {
display: none;
}
Ciarán
- more than a month ago
- Commercial Templates
- # 1
Hello Ciaran,
thanks a lot, you are very professional.
Yes, i wish to dispaly logo and slogan text,
paolo
thanks a lot, you are very professional.
Yes, i wish to dispaly logo and slogan text,
paolo
- more than a month ago
- Commercial Templates
- # 2
Hi Paolo
To amend try replacing the contents of your templates header.php (../templates/j51_willow/php/layouts/header.php) with the following...
Ciarán
To amend try replacing the contents of your templates header.php (../templates/j51_willow/php/layouts/header.php) with the following...
<div id="logo">
<?php if($this->params->get('logoImage') == '1') : ?>
<div class="logo"> <a href="/index.php" title="<?php echo $siteName; ?>">
<?php if($this->params->get('logoimagefile') == '') : ?>
<img class="logo-image" src="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template?>/images/logo.png" alt="Logo" />
<?php elseif($this->params->get('logoimagefile') != '') : ?>
<img class="logo-image" src="/<?php echo $this->baseurl ?>/<?php echo $logoimagefile; ?>" alt="Logo" />
<?php endif; ?>
</a> <p class="site-slogan"><?php echo $this->params->get('sloganText'); ?></p></div>
</div>
<?php else : ?>
<div class="logo">
<h1 class="logo-text"> <a href="/index.php" title="<?php echo $this->params->get('siteName'); ?>">
<?php echo $this->params->get('logoText'); ?>
</a> </h1>
<p class="site-slogan"><?php echo $this->params->get('sloganText'); ?></p>
</div>
</div>
<?php endif; ?>
Ciarán
- more than a month ago
- Commercial Templates
- # 3
HI Paolo
To amend try adding the following to the Custom CSS field of your templates parameters (edit to taste)...
Ciarán
To amend try adding the following to the Custom CSS field of your templates parameters (edit to taste)...
.site-slogan {font-size: 10px !important;}
Ciarán
- more than a month ago
- Commercial Templates
- # 5
Hi Ciaran,
It's perfect.
I Still need your help: how can I make appear a Icon font awesome on a custom form?
Thank for your patience.
paolo
It's perfect.
I Still need your help: how can I make appear a Icon font awesome on a custom form?
Thank for your patience.
paolo
- more than a month ago
- Commercial Templates
- # 6
Hi Paolo
Not sure if I understand you correctly. Would you have a URL to an example of your form?
Ciaran
Not sure if I understand you correctly. Would you have a URL to an example of your form?
Ciaran
- more than a month ago
- Commercial Templates
- # 7
Hi Ciaran,
I would just like to know the correct instruction to put an awesome logo in custom form. I'm creating a page with contacts and I would like, for example, to put next to what's-up logo, the phone number.
Thanks a lot.
paolo
I would just like to know the correct instruction to put an awesome logo in custom form. I'm creating a page with contacts and I would like, for example, to put next to what's-up logo, the phone number.
Thanks a lot.
paolo
- more than a month ago
- Commercial Templates
- # 8
Hi Paolo
Presuming I understand you correctly you could use something like the following...
Alternatively you can also use the following...
PS. For the benefit of other forum users I would ask to post each new query to a new separate forum post. Just makes it easier for other users to search for similar queries in the future
Ciarán
Presuming I understand you correctly you could use something like the following...
<span class="fa-phone padding-left-20">Telephone:</span> (212)888-77-88
Alternatively you can also use the following...
<i class="fa fa-phone"></i>Telephone (212)888-77-88
PS. For the benefit of other forum users I would ask to post each new query to a new separate forum post. Just makes it easier for other users to search for similar queries in the future

Ciarán
- more than a month ago
- Commercial Templates
- # 9
Thanks a lot Ciaran,
it was just the right information that I needed.
Sorry for the post, I also need to learn this.
paolo
it was just the right information that I needed.
Sorry for the post, I also need to learn this.
paolo
- more than a month ago
- Commercial Templates
- # 10
- 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 »