1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| //Fonction pour le style de la box
function StyleBoxFB()
{
if(document.getElementById("color_page_fb").value = 'dark')
{
//On change le style de la box
document.getElementById('page_f_fb').style.border = "solid gray 1px";
document.getElementById('page_f_fb').style.backgroundColor = "#000000";
document.getElementById('page_f_fb').style.color = "#FFFFFF";
document.getElementById('hreader_fb').style.backgroundColor = "#000000";
document.getElementById('color_title_fb').style.color = "#FFFFFF";
return false;
}
else
{
if(document.getElementById("color_page_fb").value = 'light'){
//On change le style de la box
document.getElementById('page_f_fb').style.border = "solid gray 1px";
document.getElementById('page_f_fb').style.backgroundColor = "#FFFFFF";
document.getElementById('page_f_fb').style.color = "#333";
document.getElementById('hreader_fb').style.backgroundColor = "#EDEFF4";
document.getElementById('color_title_fb').style.color = "#333";
}
}
} |