Logo.css

Business template for Joomla 3 and 2.5 ideal to create blog or personal website.
GK User
Tue Sep 11, 2012 2:49 pm
Hello,

I need to change logo size. I have tried to modify "template.css" but no effect .....
Can you help me ? I don't find where it is ?

Thanks a lot.
JS
User avatar
Fresh Boarder

GK User
Tue Sep 11, 2012 6:13 pm
Hi,

Could you provide an URL to your website? Then I'll be able to tell you which lines of the CSS code should be exactly changed.
User avatar
Administrator

GK User
Thu Sep 13, 2012 7:13 am
dziudek wrote:Hi,

Could you provide an URL to your website? Then I'll be able to tell you which lines of the CSS code should be exactly changed.


Thanks, It is www.leodejoe.com
User avatar
Fresh Boarder

GK User
Thu Sep 13, 2012 8:04 am
The size can be changed in the template.css file in this fragment:
Code: Select all
h1#gkLogo a img {
display: block;
height: auto;
margin: 0;
width: auto;
}


but in general I don't understand the problem, because the logo is not scaled and cropped now.
User avatar
Administrator

GK User
Thu Sep 13, 2012 8:34 am
dziudek wrote:The size can be changed in the template.css file in this fragment:
Code: Select all
h1#gkLogo a img {
display: block;
height: auto;
margin: 0;
width: auto;
}


but in general I don't understand the problem, because the logo is not scaled and cropped now.

Thanks a lot and sorry for this question ....
User avatar
Fresh Boarder

GK User
Thu Sep 13, 2012 9:49 am
I wrote this code with margin 10 but it never work in pages where there is the plugin SIG Pro is active :

h1#gkLogo a img {
display: block;
height: 127;
margin: 10;
width: 245;
}

Do you know why it don't work with SIG Pro ?

Thanks.
JS
User avatar
Fresh Boarder

GK User
Thu Sep 13, 2012 10:17 am
You have wrote the wrong code, the proper code for your dimensions is:

Code: Select all
h1#gkLogo a img {
display: block;
height: 127px;
margin: 10px;
width: 245px;
}


you have forgot the units ;)
User avatar
Administrator

GK User
Thu Sep 13, 2012 10:49 am
dziudek wrote:You have wrote the wrong code, the proper code for your dimensions is:

Code: Select all
h1#gkLogo a img {
display: block;
height: 127px;
margin: 10px;
width: 245px;
}


you have forgot the units ;)

Sorry It is ok now.
User avatar
Fresh Boarder


cron