А как поменять обычные ссылки типа "вход, регистрация, сообщения" на свой текст?
хм....
Страница: 1
Сообщений 1 страница 3 из 3
Поделиться220 Сен 2008 23:28:09
Цитата!
Автор: Айрин
Изменяем надписи в панеле ссылок. Lord Fell
В HTML-низ.
Для изменения слова "Форум"
Код:<script> <!-- indexof="Форумочек" str = document.getElementById("navindex").innerHTML pos = str.indexOf("Форум") document.getElementById("navindex").innerHTML=str.substring(0,pos)+indexof+str.substring(pos+5,str.length-1) --> </script>Для изменения слова Участники
Код:<script> <!-- userof="Люди" str = document.getElementById("navuserlist").innerHTML if( (pos=str.indexOf("Участники")) != -1 ) document.getElementById("navuserlist").innerHTML=str.substring(0,pos)+userof+str.substring(pos+9,str.length-1) --> </script>Для изменения слова Правила
Код:<script> <!-- pravilof="Законы" str = document.getElementById("navrules").innerHTML pos = str.indexOf("Правила") document.getElementById("navrules").innerHTML=str.substring(0,pos)+pravilof+str.substring(pos+14,str.length-1) --> </script>Для изменения слова Поиск
Код:<script> <!-- findof="Найти" str = document.getElementById("navsearch").innerHTML pos = str.indexOf("Поиск") document.getElementById("navsearch").innerHTML=str.substring(0,pos)+findof+str.substring(pos+5,str.length-1) --> </script>Для изменения слова Профиль
Код:<script> <!-- faseof="Морда" str = document.getElementById("navprofile").innerHTML pos = str.indexOf("Профиль") document.getElementById("navprofile").innerHTML=str.substring(0,pos)+faseof+str.substring(pos+14,str.length-1) --> </script>Для изменения слова Сообщения
Код:<script> <!-- pismaof="Мессаги" str = document.getElementById("navpm").innerHTML pos = str.indexOf("Сообщения") document.getElementById("navpm").innerHTML=str.substring(0,pos)+pismaof+str.substring(pos+9,str.length-1) --> </script>Для изменения слова Администрирование
Код:<script> <!-- godof="Админка" str = document.getElementById("navadmin").innerHTML pos = str.indexOf("Администрирование") document.getElementById("navadmin").innerHTML=str.substring(0,pos)+godof+str.substring(pos+17,str.length-1) --> </script>Для изменения слова Выход
Код:<script> <!-- valiof="5 рублей" str = document.getElementById("navlogout").innerHTML pos = str.indexOf("Выход") document.getElementById("navlogout").innerHTML=str.substring(0,pos)+valiof+str.substring(pos+5,str.length-1) --> </script>Для изменения слова Вход
Код:<script> <!-- vxodiof="3 рубля" str = document.getElementById("navlogin").innerHTML pos = str.indexOf("Войти") document.getElementById("navlogin").innerHTML=str.substring(0,pos)+vxodiof+str.substring(pos+5,str.length-1) --> </script>Для изменения слова Регистрация
Код:<script> <!-- regof="Формальности" str = document.getElementById("navregister").innerHTML pos = str.indexOf("Регистрация") document.getElementById("navregister").innerHTML=str.substring(0,pos)+regof+str.substring(pos+18,str.length-1) --> </script>
Отредактировано Эмили (20 Сен 2008 23:35:24)
Поделиться320 Сен 2008 23:28:43
Анастейша
Смотрим тут
И впредь, создавайте темы с информативным названием.
Страница: 1