1. paolorusso
  2. Commercial Templates
  3. Thursday, 04 August 2016
  4.  Subscribe via email
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
Accepted Answer Pending Moderation
0
Votes
Undo
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)...



.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
  1. more than a month ago
  2. Commercial Templates
  3. # 1
Accepted Answer Pending Moderation
0
Votes
Undo
Hello Ciaran,
thanks a lot, you are very professional.
Yes, i wish to dispaly logo and slogan text,
paolo
  1. more than a month ago
  2. Commercial Templates
  3. # 2
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Paolo

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
  1. more than a month ago
  2. Commercial Templates
  3. # 3
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Ciaran, you are great.
How can I resize slogan text ?
Thanks a lot.
paolo
  1. more than a month ago
  2. Commercial Templates
  3. # 4
Accepted Answer Pending Moderation
0
Votes
Undo
HI Paolo

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
  1. more than a month ago
  2. Commercial Templates
  3. # 5
Accepted Answer Pending Moderation
0
Votes
Undo
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
  1. more than a month ago
  2. Commercial Templates
  3. # 6
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Paolo

Not sure if I understand you correctly. Would you have a URL to an example of your form?

Ciaran
  1. more than a month ago
  2. Commercial Templates
  3. # 7
Accepted Answer Pending Moderation
0
Votes
Undo
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
  1. more than a month ago
  2. Commercial Templates
  3. # 8
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Paolo

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
  1. more than a month ago
  2. Commercial Templates
  3. # 9
Accepted Answer Pending Moderation
0
Votes
Undo
Thanks a lot Ciaran,
it was just the right information that I needed.
Sorry for the post, I also need to learn this.
paolo
  1. more than a month ago
  2. Commercial Templates
  3. # 10
  • Page :
  • 1


There are no replies made for this post yet.
Be one of the first to reply to this post!