- Posts: 1
- Thank you received: 0
Changing parameters
-
baterfly
Inactive member - Topic Author
- New Member
Less
More
13 years 8 months ago #8207
by baterfly
Changing parameters was created by baterfly
I'm trying to change some parameters for Style 1, by going to Extensions > Template Manager > hotleafs
params.ini is writable
If I change any of the colours, it changes the params.ini file but it does not seem to implement changes at front end.
What am I doing wrong?
params.ini is writable
If I change any of the colours, it changes the params.ini file but it does not seem to implement changes at front end.
What am I doing wrong?
Please Log in to join the conversation.
-
milos
Support Staff - Moderator
Less
More
- Posts: 6769
- Thank you received: 719
13 years 8 months ago #8208
by milos
Replied by milos on topic Re: Changing parameters
You must select Custom style.
Please Log in to join the conversation.
-
alexander_lopez
Inactive member - New Member
Less
More
- Posts: 3
- Thank you received: 0
13 years 7 months ago #9065
by alexander_lopez
Replied by alexander_lopez on topic Re: Changing parameters
Hey Milos, the website i am building is
www.drytekrestoration.com
I want the logo to go above the menu bar instead of below as it is right now. Also i would like to decrease the amount of space between the top of the page and the gray bar. How do i do that?? I Have tried reducing the size of the logo on both index at the root and layout on the css folder.
Can you let me know please??
Thanks.
I want the logo to go above the menu bar instead of below as it is right now. Also i would like to decrease the amount of space between the top of the page and the gray bar. How do i do that?? I Have tried reducing the size of the logo on both index at the root and layout on the css folder.
Can you let me know please??
Thanks.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 7 months ago #9083
by ivan.milic
Replied by ivan.milic on topic Re: Changing parameters
Hi, open index.php of template and find this:
replace it with this:
to reduce height of top part open layout.css and change height property of next 3 items:
#header_wrap {
height: 250px;
}
.header_module {
overflow: hidden;
margin: 0 auto;
height: 250px;
}
.header_left {
float: left;
height: 250px;
}
Code:
<div class="topmenu">
<jdoc:include type="modules" name="user3" style="none" />
</div>
<div class="logo">
<div class="logo_pad">
<a href="index.php"><img src="<?php echo $template_path ?>/images/logo.png" width="415" height="116" alt="green joomla template" /></a>
</div>
</div>
replace it with this:
Code:
<div class="logo">
<div class="logo_pad">
<a href="index.php">
<img src="<?php echo $template_path ?>/images/logo.png" width="415" height="116" alt="green joomla template" />
</a>
</div>
</div>
<div class="topmenu">
<jdoc:include type="modules" name="user3" style="none" />
</div>
to reduce height of top part open layout.css and change height property of next 3 items:
#header_wrap {
height: 250px;
}
.header_module {
overflow: hidden;
margin: 0 auto;
height: 250px;
}
.header_left {
float: left;
height: 250px;
}
Please Log in to join the conversation.
Time to create page: 0.169 seconds