Форум поддержки пользователей ZeroParking

Информация о пользователе

Привет, Гость! Войдите или зарегистрируйтесь.


Вы здесь » Форум поддержки пользователей ZeroParking » Галерея скриптов » Информационный блок


Информационный блок

Сообщений 121 страница 146 из 146

121

Аико написал(а):

Ещё один вопрос можно ли вставить в блок мини-чат?


Замените Скрипт Инфоблока на такой:

Код:
<script type="text/javascript">
    var news = new Array ()
news.push(new Array("Информация ", "Добро пожаловать на форум ролевых игр «Восточное Солнце»! Мы, наконец, оклемались от зимы, перейдя к сезону красоты и новой жизни! Новый вдох с новой ВЕСНОЙ! Рейтинг игр NC-17 *как минимум*. Людей со слабой психикой и пуританским воспитанием большая просьба не регистрироваться, в ином случае, мы не несем ответственность за последствия."))
    news.push(new Array("Пользователям", "<a href=http://easternsun.rolevka.ru/viewtopic.php?id=108>Правила форума</a><br><a href=http://easternsun.rolevka.ru/viewtopic.php?id=109>Шаблон Анкеты</a><br><a href= http://easternsun.rolevka.ru/viewtopic.php?id=106>Ваши вопросы</a>"))
    news.push(new Array("Новости форума", "Осталось всего 6 дней, до того как нашему форуму исполнится пол года!"))
    news.push(new Array("Календарь", '<iframe name="fantasy" src="http://fantasyflash.ru/vr2/vr17.htm" height="154" width="154" scrolling="no" frameborder="0"></iframe>'))
    news.push(new Array("здесь будет Мини-Чат", ""))

    
    var mynews = "";
    for (q=0; q<news.length; q++){
    mynews += "<div class='container container"+q+"' style='padding:8px'><h2><center>"+news[q][0]+"</center></h2>"+news[q][1]+"</div><br /><br />";
    }
    var block=mynews;
    var arr=document.getElementsByTagName("div")
    i=0
    str=document.URL
    while(arr[i] ){
    if((str.substring(str.lastIndexOf('/')+1)=="" || str.substring(str.lastIndexOf('/')+1)=="index.php") && arr[i].className=="main"){
    name=arr[i].innerHTML
    name=name.substring(0)
    arr[i].innerHTML="<table><tr><td width=20% valign=top>"+block+"</td><td width=80%>"+name+"</td></tr></table>"
    }
    i++
    }
    </script>
<div style="display:none;">
<!-- BEGIN CBOX - www.cbox.ws - v001 -->
<style>.container.container4{position:relative:padding:0;margin:0 -1em;}</style>
<div id="cboxdiv" style="text-align:position:center;line-height: 0">
<div><iframe frameborder="0" width="100%" height="305" src="http://www4.cbox.ws/box/?boxid=3993581&amp;boxtag=152dr0&amp;sec=main" marginheight="2" marginwidth="2" scrolling="auto" allowtransparency="yes" name="cboxmain" style="border:#F6F3E0 1px solid;" id="cboxmain"></iframe></div>
<div><iframe frameborder="0" width="100%" height="75" src="http://www4.cbox.ws/box/?boxid=3993581&amp;boxtag=152dr0&amp;sec=form" marginheight="2" marginwidth="2" scrolling="no" allowtransparency="yes" name="cboxform" style="border:#F6F3E0 1px solid;border-top:0px" id="cboxform"></iframe></div></div>
<script type="text/javascript">$("#cboxdiv").appendTo(".container.container4");</script>

:glasses:

Отредактировано Deff (2011-04-11 03:13:31)

+1

122

Deff написал(а):

Замените Скрипт Инфоблока на такой:

Большое спасибо! :cool:

0

123

Здравствуйте,подскажите,пожалуйста,что изменить в данном коде,чтоб информационные блоки находились слева?

Код:
<script type="text/javascript">
var news1= new Array ("тема1", "информация по теме")
var news2= new Array ("тема2", "информация по теме")
var news3= new Array ("тема2", "информация по теме")
var news4= new Array ("тема2", "информация по теме")
var block1="<div class=container style=padding:5px><h2><center>"+news1[0]+"</center></h2>"+news1[1]+"</div><br><br>"
var block2="<div class=container style=padding:5px><h2><center>"+news2[0]+"</center></h2>"+news2[1]+"</div><br><br>"
var block3="<div class=container style=padding:5px><h2><center>"+news3[0]+"</center></h2>"+news3[1]+"</div><br><br>"
var block4="<div class=container style=padding:5px><h2><center>"+news4[0]+"</center></h2>"+news4[1]+"</div><br><br>"

var arr=document.getElementsByTagName("div")
i=0
str=document.URL
while(arr[i] ){
if((str.substring(str.lastIndexOf('/')+1)=="" || str.substring(str.lastIndexOf('/')+1)=="index.php") && arr[i].className=="main"){
name=arr[i].innerHTML
name=name.substring(0)
arr[i].innerHTML="<table><tr><td width=79%>"+name+"</td><td width=21% valign=top>"+block1+""+block2+""+block3+""+block4+"</td></tr></table>"
}
i++
}
</script>

Интересует именно этот скрипт.

0

124

Ну или вот этот,чтоб был справа

Код:
<script type="text/javascript">
    var news = new Array ()
    news.push(new Array("Заголовок", "Новость"))
    news.push(new Array("Заголовок2", "Новость2"))
    var mynews = "";
    for (q=0; q<news.length; q++){
    mynews += "<div class='container' style='padding:8px'><h2><center>"+news[q][0]+"</center></h2>"+news[q][1]+"</div><br /><br />";
    }
    var block=mynews;
    var arr=document.getElementsByTagName("div")
    i=0
    str=document.URL
    while(arr[i] ){
    if((str.substring(str.lastIndexOf('/')+1)=="" || str.substring(str.lastIndexOf('/')+1)=="index.php") && arr[i].className=="main"){
    name=arr[i].innerHTML
    name=name.substring(0)
    arr[i].innerHTML="<table><tr><td width=20% valign=top>"+block+"</td><td width=80%>"+name+"</td></tr></table>"
    }
    i++
    }
    </script>

Мне нужны одинаковые информационные блоки с обоих сторон.

0

125

Подскажите, а как выровнять текст в блоках по центру и возможно ли изменить шрифт?

0

126

Аико

news.push(new Array('Заголовок', '<center><font color="#ff000"> Новость</font></center>'))

Отредактировано Deff (2011-04-18 10:56:56)

+1

127

Подскажите, пожалуйста, как вставить этот скрипт в блок? http://easternsun.rolevka.ru

<object type="application/x-shockwave-flash" data="http://widgets.forismatic.com/export/widgets/ru/web-widget-flash/c.swf" width="160px" height="200px">
<param name="movie" value="http://widgets.forismatic.com/export/widgets/ru/web-widget-flash/c.swf" />
<param name="wmode" value="transparent" />
<param name="flashVars" value="lang=en" />
</object>

Отредактировано Аико (2011-04-27 12:27:21)

0

128

Аико написал(а):

Подскажи, пожалуйста, как вставить этот скрипт в блок? http://easternsun.rolevka.ru

:glasses: Попробуйте так:

Код:
news.push(new Array('Заголовок', '<center><object type="application/x-shockwave-flash" data="http://widgets.forismatic.com/export/widgets/ru/web-widget-flash/c.swf" width="160px" height="200px">\
<param name="movie" value="http://widgets.forismatic.com/export/widgets/ru/web-widget-flash/c.swf" />\
<param name="wmode" value="transparent" />\
<param name="flashVars" value="lang=en" />\
</object></center>'))

+1

129

Подскажите, пожалуйста, как вставить этот скрипт гороскопа в блок? http://easternsun.rolevka.ru

Код:
<script type="text/JavaScript"><!--
var mydate=new Date();var year=mydate.getYear();if (year < 1000) year+=1900;var day=mydate.getDay();var month=mydate.getMonth();var daym=mydate.getDate();if (daym<10)daym="0"+daym;var dayarray=new Array('Вск','Пнд','Втр','Срд','Чтв','Птн','Сбт');var montharray=new Array('Янв','Фев','Мар','Апр','Мая','Июн','Июл','Авг','Сен','Окт','Ноя','Дек');document.write("<b>Гороскоп</b> на "+dayarray[day]+", "+daym+" "+montharray[month]+", "+year+"г");
// --></script>
<div style="position: absolute; top: 70px; left: 45px; width: 70px; height: 70px; overflow: hidden;"><img src="http://astroscope.ru/img/160bg.gif" border="0" alt="гороскоп" /></div>
<div style="position: absolute; top: 25px; left: 0px; width: 160px; height: 160px; overflow: hidden;"><img usemap="#astroscope" src="http://astroscope.ru/img/160.gif" border="0" alt="" /></div>
<div style="position: absolute; text-align: center; top: 14px; left: 0px; width: 160px; height: 11px; overflow: hidden;"><span style="color: #000040;"><a href="http://astroscope.ru"><span style="color: #000000;">астрология и гороскопы</span></a></span></div>
<map name="astroscope">
<area title="Овен" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=aries&quot;,&quot;aries&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="70,10,95,35" href="javascript:void(0)" />
<area title="Телец" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=taurus&quot;,&quot;taurus&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="100,20,125,45" href="javascript:void(0)" />
<area title="Близнецы" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=gemini&quot;,&quot;gemini&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="120,45,145,70" href="javascript:void(0)" />
<area title="Рак" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=cancer&quot;,&quot;cancer&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="125,75,150,100" href="javascript:void(0)" />
<area title="Лев" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=leo&quot;,&quot;leo&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="110,100,140,125" href="javascript:void(0)" />

<area title="Дева" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=virgo&quot;,&quot;virgo&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="90,120,120,145" href="javascript:void(0)" />
<area title="Весы" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=libra&quot;,&quot;libra&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="60,125,90,150" href="javascript:void(0)" />
<area title="Скорпион" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=scorpio&quot;,&quot;scorpio&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="35,120,60,145" href="javascript:void(0)" />
<area title="Стрелец" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=sagittarius&quot;,&quot;sagittarius&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="15,95,45,120" href="javascript:void(0)" />
<area title="Козерог" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=capricorn&quot;,&quot;capricorn&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="5,65,35,90" href="javascript:void(0)" />
<area title="Водолей" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=aquarius&quot;,&quot;aquarius&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="15,35,40,60" href="javascript:void(0)" />
<area title="Рыбы" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=pisces&quot;,&quot;pisces&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="40,15,70,40" href="javascript:void(0)" />
<area shape="default" href="http://astroscope.ru" />

0

130

Аико
обычно просто добавляете блоки туда этот скрипт!

0

131

пробовала, но скрипт на главную вылез

Код:
<script type="text/javascript">
        var news = new Array ()
    news.push(new Array("Eastern Sun", '<center><object type="application/x-shockwave-flash" data="http://widgets.forismatic.com/export/widgets/ru/web-widget-flash/c.swf" width="240px" height="150px">\
    <param name="movie" value="http://widgets.forismatic.com/export/widgets/ru/web-widget-flash/c.swf" />\
    <param name="wmode" value="transparent" />\
    <param name="flashVars" value="lang=ru" />\
    </object></center>'))
    news.push(new Array("Информация ", "<center>Добро пожаловать на форум ролевых игр «Восточное Солнце»! Мы, наконец, оклемались от зимы, перейдя к сезону красоты и новой жизни! Новый вдох с новой ВЕСНОЙ! Рейтинг игр NC-17 +. Людей со слабой психикой и пуританским воспитанием большая просьба не регистрироваться, в ином случае, мы не несем ответственность за последствия.</center>"))
        news.push(new Array("Новичку", "<center><a href=http://easternsun.rolevka.ru/viewtopic.php?id=108>Правила форума</a><br><a href=http://easternsun.rolevka.ru/viewtopic.php?id=143#p8327>Приветствуем гостей!</a><br><a href=http://easternsun.rolevka.ru/viewtopic.php?id=122#p8074>Форумная Анкета</a><br><a href=http://easternsun.rolevka.ru/viewtopic.php?id=109>Шаблон Анкеты</a><br><a href=  вопросы</a></center>"))
        news.push(new Array("Календарь", '<center><iframe name="fantasy" src="http://fantasyflash.ru/vr2/vr17.htm" height="154" width="154" scrolling="no" frameborder="0"></iframe></center>'))
        news.push(new Array("Гороскоп", "<script type="text/JavaScript"><!--
var mydate=new Date();var year=mydate.getYear();if (year < 1000) year+=1900;var day=mydate.getDay();var month=mydate.getMonth();var daym=mydate.getDate();if (daym<10)daym="0"+daym;var dayarray=new Array('Вск','Пнд','Втр','Срд','Чтв','Птн','Сбт');var montharray=new Array('Янв','Фев','Мар','Апр','Мая','Июн','Июл','Авг','Сен','Окт','Ноя','Дек');document.write("<b>Гороскоп</b> на "+dayarray[day]+", "+daym+" "+montharray[month]+", "+year+"г");
// --></script>
<div style="position: absolute; top: 70px; left: 45px; width: 70px; height: 70px; overflow: hidden;"><img src="http://astroscope.ru/img/160bg.gif" border="0" alt="гороскоп" /></div>
<div style="position: absolute; top: 25px; left: 0px; width: 160px; height: 160px; overflow: hidden;"><img usemap="#astroscope" src="http://astroscope.ru/img/160.gif" border="0" alt="" /></div>
<div style="position: absolute; text-align: center; top: 14px; left: 0px; width: 160px; height: 11px; overflow: hidden;"><span style="color: #000040;"><a href="http://astroscope.ru"><span style="color: #000000;">астрология и гороскопы</span></a></span></div>
<map name="astroscope">
<area title="Овен" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=aries&quot;,&quot;aries&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="70,10,95,35" href="javascript:void(0)" />
<area title="Телец" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=taurus&quot;,&quot;taurus&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="100,20,125,45" href="javascript:void(0)" />
<area title="Близнецы" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=gemini&quot;,&quot;gemini&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="120,45,145,70" href="javascript:void(0)" />
<area title="Рак" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=cancer&quot;,&quot;cancer&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="125,75,150,100" href="javascript:void(0)" />
<area title="Лев" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=leo&quot;,&quot;leo&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="110,100,140,125" href="javascript:void(0)" />

<area title="Дева" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=virgo&quot;,&quot;virgo&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="90,120,120,145" href="javascript:void(0)" />
<area title="Весы" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=libra&quot;,&quot;libra&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="60,125,90,150" href="javascript:void(0)" />
<area title="Скорпион" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=scorpio&quot;,&quot;scorpio&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="35,120,60,145" href="javascript:void(0)" />
<area title="Стрелец" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=sagittarius&quot;,&quot;sagittarius&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="15,95,45,120" href="javascript:void(0)" />
<area title="Козерог" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=capricorn&quot;,&quot;capricorn&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="5,65,35,90" href="javascript:void(0)" />
<area title="Водолей" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=aquarius&quot;,&quot;aquarius&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="15,35,40,60" href="javascript:void(0)" />
<area title="Рыбы" onclick="window.open(&quot;http://astroscope.ru/goroscopes.php?sgn=pisces&quot;,&quot;pisces&quot;,&quot;width=400,height=400,scrollbars,toolbar=0,status=0&quot;)" shape="rect" coords="40,15,70,40" href="javascript:void(0)" />
<area shape="default" href="http://astroscope.ru" />"))
        news.push(new Array("Чат", ""))

    var mynews = "";
        for (q=0; q<news.length; q++){
        mynews += "<div class='container container"+q+"' style='padding:8px'><h2><center>"+news[q][0]+"</center></h2>"+news[q][1]+"</div><br /><br />";
        }
        var block=mynews;
        var arr=document.getElementsByTagName("div")
        i=0
        str=document.URL
        while(arr[i] ){
        if((str.substring(str.lastIndexOf('/')+1)=="" || str.substring(str.lastIndexOf('/')+1)=="index.php") && arr[i].className=="main"){
        name=arr[i].innerHTML
        name=name.substring(0)
        arr[i].innerHTML="<table id=Lindett><tr><td width=20% valign=top>"+block+"</td><td width=80% valign=top>"+name+"</td></tr></table>"
        }
        i++
        }
        </script>
    <div style="display:none;">
    <!-- BEGIN CBOX - www.cbox.ws - v001 -->
    <style>.container.container4{position:relative:padding:0;margin:0 -1em;}</style>
    <div id="cboxdiv" style="text-align:position:center;line-height: 0">
    <div><iframe frameborder="0" width="100%" height="305" src="http://www4.cbox.ws/box/?boxid=3993581&amp;boxtag=152dr0&amp;sec=main" marginheight="2" marginwidth="2" scrolling="auto" allowtransparency="yes" name="cboxmain" style="border:#F6F3E0 1px solid;" id="cboxmain"></iframe></div>
    <div><iframe frameborder="0" width="100%" height="74" src="http://www4.cbox.ws/box/?boxid=3993581&amp;boxtag=152dr0&amp;sec=form" marginheight="2" marginwidth="2" scrolling="no" allowtransparency="yes" name="cboxform" style="border:#F6F3E0 1px solid;border-top:0px" id="cboxform"></iframe></div></div>
    <script type="text/javascript">$("#cboxdiv").appendTo(".container.container4");</script>

0

132

Аико
ну тогда я не знаю так как я его и не ставил к себе не разу!

0

133

Аико А так ?

news.push(new Array("Eastern Sun", '<center><object type="application/x-shockwave-flash" data="http://widgets.forismatic.com/export/widgets/ru/web-widget-flash/c.swf" width="155px" height="270px">\
    <param name="movie" value="http://widgets.forismatic.com/export/widgets/ru/web-widget-flash/c.swf" />\
    <param name="wmode" value="transparent" />\
    <param name="flashVars" value="lang=ru" />\
    </object></center>'))

Отредактировано Deff (2011-05-27 11:58:59)

0

134

:no: Так же... Скрипт из 129 поста вылезает на главную

Отредактировано Аико (2011-05-28 06:36:10)

0

135

Аико Хм - я имел ввиду заменить в скрипте эту часть...
Полная версия Скрипта будет такой:

Код:
<script type="text/javascript">
        var news = new Array ()
news.push(new Array("Eastern Sun", '<center><object type="application/x-shockwave-flash" data="http://widgets.forismatic.com/export/widgets/ru/web-widget-flash/c.swf" width="155px" height="270px">\
    <param name="movie" value="http://widgets.forismatic.com/export/widgets/ru/web-widget-flash/c.swf" />\
    <param name="wmode" value="transparent" />\
    <param name="flashVars" value="lang=ru" />\
    </object></center>'))
    news.push(new Array("Информация ", "<center>Добро пожаловать на форум ролевых игр «Восточное Солнце»! Мы, наконец, оклемались от зимы, перейдя к сезону красоты и новой жизни! Новый вдох с новой ВЕСНОЙ! Рейтинг игр NC-17 +. Людей со слабой психикой и пуританским воспитанием большая просьба не регистрироваться, в ином случае, мы не несем ответственность за последствия.</center>"))
        news.push(new Array("Новичку", "<center><a href=http://easternsun.rolevka.ru/viewtopic.php?id=108>Правила форума</a><br><a href=http://easternsun.rolevka.ru/viewtopic.php?id=143#p8327>Приветствуем гостей!</a><br><a href=http://easternsun.rolevka.ru/viewtopic.php?id=122#p8074>Форумная Анкета</a><br><a href=http://easternsun.rolevka.ru/viewtopic.php?id=109>Шаблон Анкеты</a><br><a href=  вопросы</a></center>"))
        news.push(new Array("Календарь", '<center><iframe name="fantasy" src="http://fantasyflash.ru/vr2/vr17.htm" height="154" width="154" scrolling="no" frameborder="0"></iframe></center>'))
        news.push(new Array("Чат", ""))

    var mynews = "";
        for (q=0; q<news.length; q++){
        mynews += "<div class='container container"+q+"' style='padding:8px'><h2><center>"+news[q][0]+"</center></h2>"+news[q][1]+"</div><br /><br />";
        }
        var block=mynews;
        var arr=document.getElementsByTagName("div")
        i=0
        str=document.URL
        while(arr[i] ){
        if((str.substring(str.lastIndexOf('/')+1)=="" || str.substring(str.lastIndexOf('/')+1)=="index.php") && arr[i].className=="main"){
        name=arr[i].innerHTML
        name=name.substring(0)
        arr[i].innerHTML="<table id=Lindett><tr><td width=20% valign=top>"+block+"</td><td width=80% valign=top>"+name+"</td></tr></table>"
        }
        i++
        }
        </script>

0

136

Подскажите пожалуйста, как поставить в профиль ссылку  :blush:

0

137

Люка написал(а):

Подскажите пожалуйста, как поставить в профиль ссылку  :blush:

Что вы имеете в виду? Если вы хотите указать свой вебсайт, то "Профиль" --> на вкладке "Персональный" --> Вебсайт
и вставляете ссылку.
Или вы о другом? Уточните)

0

138

Януш
нет-нет х)
именно чтобы в полях профиля можно было поставить ссылку...ну...например ссылку на анкету.

0

139

Люка
О, это довольно просто. Для начала запрещаете для этого поля править его игрокам, чтобы это делали только модеры и админы. А потом просто в само поле вставляете <a href="ссылка">Текст ссылки</a>
Вот и все)

+1

140

Януш
мм, а чтобы пользователи могли сами ставить...нет?

0

141

Люка, нажмите "Редактировать" нужное поле в Админ-меню -- Поля профиля и в открывшемся окне нажмите да напротив графы "Заполнение". А вот ссылку вставлять только таким образом ,потому пользователям придется это объяснить и научить, если не умеют.

0

142

Ви
Януш
в общем спасибо ^ ^ (+)

0

143

Ви, а разве нет запрета на html-теги, если поле заполняют пользователи? Насколько я знаю, оно есть и не зря: некоторые умники умеют код поставить через ж..у или умышленно ставят нечто, наносящее вред форуму.

+1

144

Януш, я знаю, что такое иногда было с картинками, но до того момента, пока не ввели расширенный профиль, ибо теперь картинки только через список реально вставить, а с ссылками такого не встречала. Фактически, думаю, и не встречу, потому что сама не употребляю. Но за информацию спасибо, приму к сведению.

0

145

Вариант Информационного Блока от Duka с облегченным заполнением Инфой

0

146

D_the_B написал(а):

Данный информационный блок делит форум на 2 части форумы || и 4 блока (можно вставлять картинку или текст)

А как ее вставить?Я ссылку вставляю там где должна быть информация по теме,а оно так эту ссылку и оставляет-не переводит в картинку(((((((((((((

ПОМОГИТЕ ПОЖАЛУЙСТА! :flag:

УЖе разобралась!

Отредактировано Дана1951 (2011-08-07 16:26:06)

0


Вы здесь » Форум поддержки пользователей ZeroParking » Галерея скриптов » Информационный блок


Рейтинг форумов | Создать форум бесплатно