Hi,
is it possible to change font weight for the logo 2nd part only? like if my logo is is NamePhotography i want my name to be bold then photography to be normal.
thanks for the update installing now :)
regards.
X3 Photo Gallery Support Forums
a.logo > .m2 {
font-weight: bold;
}That would be correct code, but "lighter" does not necessarily change anything depending on the font you are using. Font-weight "normal" is normally 400, and "lighter" would try to set the font to 300, but only if that font-weight exists in your loaded Google fonts. What font combo are you using? To use a lighter font, you would likely need to include a lighter font (settings -> style -> font), and also make sure the Google-font you are using supports a lighter font.winph wrote:and if i want the 1st part to be lighter can i add...??Codea.logo > .m1 { font-weight: lighter; }
You can't generally change the hover color if you speak of the 3D effect, as this color is calculated by the javascript that creates the effect. You might be able to change font-weight, but that will likely look a bit strange.winph wrote:just curious... how do i change color/font-weight when on-mouse for the logo text?
a.logo:hover > .m1 {
font-weight: bold;
}Could also be related yes.is it possible that on my macbook i installed lato font while my imac & mobile doesnt?
You are using font-weights Lato:300,300italic, which does not include any bold fonts. This generally means that the browser will always use faux-bold (fake bold), if it cannot find any 600,700,800,900 weight included in the font. Different browsers may apply their "own" interpretation of bold. From here I see this:winph wrote:http://www.sherwintan.com
Lato:300,300italic,700This I don't know, but would not be a related issue. Can't reproduce.winph wrote:tried with arial but still same even though i have arial installed :(