Thanks Alex!
You can see my changes here : http://monpermisvoiture.com
1) On desktop, Icon login is changed by a text
2) On mobile, it's an icon.
I think I could be a good idea to make a tip for this.
--------------------
But I can't find out how to code it cleanly. I didn't use font icons in bootstrap.css because when I change :
.icon-user:before { content: "|";
}
by
.icon-user:before { content: "se connecter";
}
my content is changed to several icons. Can you tell me how to format this part please?
My current code :
In the header ( I created a class):
<span><?php _e('<p class="fred-icon"></p>','vibe'); ?></span>
In wplms oneinstructor >style.css:
@media (min-width: 768px){
.fred-icon:before {
content: "SE CONNECTER";
}
}
@media (max-width: 767px){
.fred-icon:before {
content: url(http://myurl.com/mypicture.png);
}
}
Thanks a lot Alex.