Re:Moving the logo on Fusion Lite
k5adb (User)

Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Karma: 0  
Moving the logo on Fusion Lite
by k5adb 3 Months, 3 Weeks ago
Hello,
I am just starting to learn about css, I need to move the logo and the H1 box down and to the left in the header and change the color of the stripes in the header I have done this before with Joomla with other templates, but have only been able to really mess this template up. I have spent a couple of days trying to figure this out.
Thanks for any help that you may offer.
Al
The administrator has disabled public write access. | Report to moderator    
Lumo (Admin)

Admin
Posts: 84
graph
User Online Now Click here to see the profile of this user
Karma: 3  
Re:Moving the logo on Fusion Lite
by Lumo 3 Months, 3 Weeks ago
Hello!

To change the background stripes you need to change 2 images in your template/images folder:

Code:

bg.png and bgbase.png


Both of these images are in the template source file provided in your download, I would recommend editing this file with Adobe Fireworks (you can download a trial version from there site), which will allow you to change the above image slices.

To add some text to the right side of the logo; first insert the div below just above the <div id="header_right"> in your template index.php:

Code:

<div id="some_text"><p>here is some text</p></div>


and then add this into your template CSS file (at the bottom of the file):
Code:

#some_text {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 12px;
float: left;
width: 200px;
padding: 0px 10px;
}



then you just need to change the width values of the header_left and header_right div's as below:
Code:

#header_left {
float: left;
width: 200px; /*changed from 400*/
}

#header_right {
float: right;
width: 250px; /*changed from 350*/
}



and lastly, to move all of this lower down:

Code:

#header {
color:#FFFFFF;
width: 850px;
height: 84px;
margin-top: 20px; /*change this to move the logo etc lower*/
}



And that should sort all that out! If this is not working for you, let me know and mail me your URL and a site super admin account and I will have a look for you
The administrator has disabled public write access. | Report to moderator    
       
© 2008-2020 Theme Joomla. 2Checkout.com, Inc. is an authorized retailer of Theme Joomla.