Jump to content

[solved] How to change color font in template


Recommended Posts

this is blockuserinfo module

 

you can change colors in css file of this module modules/blockuserinfo/blockuserinfo.css

 

you should also check your template directory for this, if this file exist there - then apply changes there

Link to comment
Share on other sites

I try, this is my code:

 

#header_user_info {

clear:both;

float:right;

margin-top:10px;

padding:0;

font-size:12px;

color:#fff

}

 

but I can not :(

 

the word "entrar", "contacto" and "mapa del sitio" (attach) are in the same color.

What can it be?

Link to comment
Share on other sites

Hi! They know how I can change the color of these "font"? Thanks for your help in advance! PD: font that are black on the attachment

 

Block Permanlink (Contacto, Mapa del sitio)

 

blockpermanentlinks.css

 

#header_links a {
text-decoration: none;
}

 

add color

 

#header_links a {
text-decoration: none;
color:#fff
}

 

Blockuserinfo

 

blockuserinfo.css

 

#header_user_info {
clear: both;
float: right;
margin-top: 10px;
padding: 0;
font-size: 12px;
}

 

by

 

#header_user_info {
clear: both;
float: right;
margin-top: 10px;
padding: 0;
font-size: 12px;
color:#fff;
}

 

---

 

#header_user_info a {
line-height: 11px;
}

 

by

 

#header_user_info a {
line-height: 11px;
color:#fff;
}

Link to comment
Share on other sites

hi @nadie

 

In mi blockuserinfo.css

 

 

/* user infos */

#header_user_info {

clear:both;

float:right;

margin-top:10px;

padding:0;

font-size:12px;

color:#fff

}

#header_user_info a {

display:inline-block;

margin:0 0 0 10px;

padding:3px 0 0 34px;

line-height: 11px;

border-left:1px solid #000;ç

color:#fff

 

}

 

 

in my blockpermanentlink.css

#header_links a {text-decoration: none; color:#fff}

 

but I do not get that look in white!.

What I can do? I'm beginning to despair!

 

thanks!

Link to comment
Share on other sites

hi @nadie

 

In mi blockuserinfo.css

 

 

/* user infos */

#header_user_info {

clear:both;

float:right;

margin-top:10px;

padding:0;

font-size:12px;

color:#fff

}

#header_user_info a {

display:inline-block;

margin:0 0 0 10px;

padding:3px 0 0 34px;

line-height: 11px;

border-left:1px solid #000;ç

color:#fff

 

}

 

 

in my blockpermanentlink.css

#header_links a {text-decoration: none; color:#fff}

 

but I do not get that look in white!.

What I can do? I'm beginning to despair!

 

thanks!

 

 

Have you cleared your browser cache?

 

 

Can you tell me the url of your store?

 

Sorry for my English

Link to comment
Share on other sites

ok, problem solved!!!!, had to clear the browser cache (chrome) to be refreshed.

 

How I can change the lyrics to "Entrar".

 

Thanks in advance!

 

 

The text font?, Or translation of the word?

 

text-font in:

 

#header_user_info a.login

 

in

 

blockuserinfo.css

 

add

 

font-family (http://www.w3schools...ss/css_font.asp)

 

 

If instead, you want to change the translation of the text, you can do it in the tab Localization -> Translations -> Translations modules

 

Sorry for my English.

Link to comment
Share on other sites

oh sorry, the color of the font. My website is in spanish.

 

how I can change color?

 

Thanks!

 

PD: Curious to see two Spanish speaking English. :)

 

color of the font the word "Enter" the module blockuserinfo

 

in

 

blockuserinfo.css

 

search:

 

#header_user_info a.login {background: url('img/icon/login.gif') no-repeat 10px 0}

 

change by

 

#header_user_info a.login {background: url('img/icon/login.gif') no-repeat 10px 0; color:#fff;}

 

Sorry for my English.

Link to comment
Share on other sites

thank you, thank you very much!

I managed to fix it thanks to you!

 

grettings!

 

Perfect, an honor to help and serve

 

Sorry for my English.

 

----

 

Add the word "Solved" of the title topic.

 

- Edit the first post of your topic by clicking on the "Edit" button,

- Click on the "Use full editor" button,

- Add the "[solved]" string at the beginning of your topic title and click on the "Submit Modified Post" button.

Link to comment
Share on other sites

×
×
  • Create New...