Logo img

Support desk for Multipurpose Quark Theme
GK User
Fri Jul 03, 2015 8:50 pm
how do i change QUARK name/logo at the top with my company logo? I cant seem to find anywhere this info
User avatar
Fresh Boarder

GK User
Fri Jul 03, 2015 9:02 pm
Joomla admin > extensions > template manager > qk_quark > features > Here :P

Cheers! Have a nice day
User avatar
Gold Boarder

teitbite
Mon Jul 06, 2015 9:16 am
Hi

Please remember that You can only upload a logo if You will select to use an image type. Other type is CSS, so this will require some knowledge about how to add that. Anyway image is much easier to handle.
User avatar
Moderator

GK User
Mon Jul 06, 2015 6:33 pm
xWiz wrote:Joomla admin > extensions > template manager > qk_quark > features > Here :P

Cheers! Have a nice day


How did I missed this :lol: it was right in front of me...
Thank you
User avatar
Fresh Boarder

GK User
Wed Jul 08, 2015 12:07 pm
Hey Guys. How do I move the logo image a bit to the right? It's too much to the left.
User avatar
Senior Boarder

GK User
Wed Jul 08, 2015 10:48 pm
Code: Select all
#gkLogo img {
  margin-left: 25px ;
}


Try this in override. Make sure you turn override CSS ON

And you can change the 25px;

Haven't tried my site use text instead of img
User avatar
Gold Boarder

GK User
Thu Jul 09, 2015 2:34 pm
Just tried it, and it works :) If you just put it in the override.css and turn override css ON it should be okey
User avatar
Gold Boarder

teitbite
Sun Jul 12, 2015 7:17 pm
Hi

This is a good solution for smaller logo and for css included logo, for image type I would advice go use this code for a better responsive functionality:

Code: Select all
#gkLogo {
    padding-left: 25px;
    box-sizing: border-box;
}

#gkLogo img {
  max-width: 100%;
}
User avatar
Moderator


cron