Единый форум поддержки

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

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


Вы здесь » Единый форум поддержки » Корзина » Общие вопросы по оформлению (45)


Общие вопросы по оформлению (45)

Сообщений 461 страница 480 из 1000

461

rps, большое вам спасибо)  :surprise:

0

462

Добрый день! Проблема следующая:
http://s1.uploads.ru/t/fCJai.jpg
Хотела сделать каждую категорию со своим названием, то есть вставить разные картинки, но как я не мучилась, форум присваивает каждой категории первое, что я поставила.
Пробовала проставлять каждой категории цифру, какой по счету она была сделана - не помогло.
UPD: И сразу вдогонку  еще небольшая проблема:
http://s1.uploads.ru/t/7iYX5.jpg
Передвинула кнопки "Форум", "Участники", etc, вниз следующим кодом:

Код:
<style type="text/css">
#pun-navlinks{
margin-top: 175px;
}
</style>

Появилось пространство после, которое мне совсем не нужно. Подскажите, пожалуйста, как убрать)

Отредактировано Rohipnol (Пн, 20 Авг 2012 13:52:11)

0

463

Как сделать листающуюся таблицу? х) Как здесь.

0

464

Хань
Сама таблица

Код:
<div style="overflow-x: hidden; overflow-y: hidden; height: 300px; width: 300px; position: absolute; top: 65px; margin-left: 638px">

<div id="slideshow">
    <div id="slidesContainer">
      <div class="slide">

<table style="width: 230px; height: 100%; margin-left: 0px;">
<tr>
<td style="width: 230px; margin-left: 0px;" align="center">
1 text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text  </center>

</td>
</tr>
</table>

      </div>
 <div class="slide">

<table style="width: 230px; height: 100%; margin-left: 0px;">
<tr>
<td style="width: 230px; margin-left: 0px;" align="center">
2 text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text </center>

</td>
</tr>
</table>

      </div>
 <div class="slide">

<table style="width: 230px; height: 100%; margin-left: 0px;">
<tr>
<td style="width: 230px; margin-left: 100px;" align="center">
3 text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text  </center>

</td>
</tr>
</table>

      </div>
 <div class="slide">

<table style="width: 230px; height: 100%; margin-left: 0px;">
<tr>
<td style="width: 230px; margin-left: 100px;" align="center">
4 text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text  </center>

</td>
</tr>
</table>
      </div>
</div></div></div>

HTML низ

Код:
<script type="text/javascript">
$(document).ready(function(){
  var currentPosition = 0;
  var slideWidth = 800;
  var slides = $('.slide');
  var numberOfSlides = slides.length;
  // С помощью скрипта убираем прокрутку в контейнере.
  $('#slidesContainer').css('overflow', 'hidden');
  // Свернем все вкладки .slides в блок #slideInner 
  slides .wrapAll('<div id="slideInner"></div>')
.css({
      'float' : 'left',
      'width' : slideWidth
    });
  // Проставим блоку #slideInner ширину, равную общей ширине контейнеров
  $('#slideInner').css('width', slideWidth * numberOfSlides);
  $('#slideshow')
    .prepend('<span class="control" id="leftControl">Clicking moves left</span>')
    .append('<span class="control" id="rightControl">Clicking moves right</span>');
  manageControls(currentPosition);
  $('.control')
    .bind('click', function(){
currentPosition = ($(this).attr('id')=='rightControl') ? currentPosition+1 : currentPosition-1;
    manageControls(currentPosition);
    $('#slideInner').animate({
      'marginLeft' : slideWidth*(-currentPosition)
    });
  });
  function manageControls(position){
    // Скрыть левую стрелку у первого контейнера
if(position==0){ $('#leftControl').hide() } else{ $('#leftControl').show() }
// Скрыть правую стрелку у последнего контейнера
    if(position==numberOfSlides-1){ $('#rightControl').hide() } else{ $('#rightControl').show() }
  }	
});
</script>

HTML вверх

Код:
<style>
#slideshow {
margin:0 auto;
width:230px;
height:300px;
background:transparent url(картинка на фон) no-repeat 0 0;
position:relative;}

#slideshow #slidesContainer {
  margin:0 auto;
  width:230px;
  height:300px;
  position:relative;}

#slideshow #slidesContainer .slide {
  margin:0 auto;
  width:710px; /* На двадцать пикселев меньше чем ширина #slidesContainer */
  overflow-y:auto; /* поддержка прокрутки */
  height:300px;
  text-align: center;}

.control {
  display:block;
  width:70px;
  height:70px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
  z-index:100;}

#leftControl {
  top:237px;
  left:-30px;
  background:transparent url(картинка в лево) no-repeat 0 0;}

#rightControl {
  top:232px;
  right:-47px;
  background:transparent url(картинка в право) no-repeat 0 0;}

.slide h3 {margin:10px 0 10px 0; text-transform: uppercase; font-family: 'times new roman'; font-size: 16px; border-bottom: 2px groove #fff;}</style>

0

465

у меня возникла проблема на форуме, точнее сказать, проблема с текстом.(
я копалась в самой структуре дизайна, тестировала его на пробнике, но там все в порядке!
хотя может быть я ошиблась при проверке. Текст в сообщениях форума подчеркнутый.
вот структура:

Отредактировано k.sama (Пн, 20 Авг 2012 17:56:35)

0

466

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

Такой вариант ссылка подойдёт?

у меня ваш скрипт с наградами и стоит))
но они под профилем много места занимают))
хотелось бы вот так, как на скрине
нажимаешь на картинку "awards" и разворачиваются награды))
http://s1.uploads.ru/i/3BAfX.png

0

467

А мне никто не поможет? D:

0

468

Здравствуйте.
У меня почему-то рамка сдвинулась на форуме.
Должно быть так:

Свернутый текст

http://pix.academ.org/img/2012/08/21/23a0fbe4694731ababd7171f2ea62b1b.png

А на деле так:

Свернутый текст

http://pix.academ.org/img/2012/08/20/633f25681312d9b3643c52aa896d672c.png

Откуда пустое место снизу появилось, я не знаю.
Как его убрать?

Свернутый текст

http://pix.academ.org/img/2012/08/21/50573ba49717771cca205b64f77ceccd.png

http://honore.rusff.ru/

0

469

Доброго времени суток!
Задумала очередной дизайн и не первый раз уперлась в определенный момент. Ссылку дать могу, но еще даже делать ничего не начинала, заранее интересуюсь возможностью реализации)

Хочется сделать шапку форума пошире, чем "Фон под таблицами" #pun. Так же хочется при этом залить весь фон не просто цветом, а каким-нибудь узором.
Можно, конечно, сделать одну огромную обоину со всем этим сразу, но хотелось бы сделать полегче весом. Мне лично придумались два варианта:

1. Есть ли возможность загнать в "HTML, BODY" две картинки? В два слоя может быть..?!
Один маленький клочок повторяется и заливает весь фон. Вторая картинка фиксируется по центру сверху

Как должно выглядеть

http://savepic.su/2295557.jpg

2. ...Или сделать #pun-title table шире чем #pun ?
В свое время пыталась, не получилась, бросила тогда эту затею.

Развернуть

http://savepic.su/2354948.jpg

Премного буду благодарна)

0

470

Heather
http://forumd.ru/viewtopic.php?id=2716
http://forumd.ru/viewtopic.php?id=1627
http://forumd.ru/viewtopic.php?id=1444

должно помоч, другого не придуманно

Отредактировано Frimen (Пн, 20 Авг 2012 23:39:43)

0

471

ссылка на форум вот - http://storiesofehho.rolka.su/
а вопрос такой: можно сделать как-то что бы при увеличении разрешения экрана боковая панель не расползалась в ширь?

0

472

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

ссылка на форум вот - http://storiesofehho.rolka.su/
а вопрос такой: можно сделать как-то что бы при увеличении разрешения экрана боковая панель не расползалась в ширь?

вопрос снимается.  я с тупила, сама поняла что ступила и поняла как исправить. пардон за переполох :blush:

0

473

Спрашиваю итак почти каждый день, но всё же здравствуйте.

У меня есть еще одна проблемка... Посмотрите: http://fantasyrolegame.spybb.ru/viewtop … d=108#p135
Каждая строчка поста, как видите, располагается слишком близко к предыдущей... липнет на нее(
Как это исправить?

0

474

Никаниэль
Делайте дополнительный перенос строки, попробуйте сменить шрифт

0

475

Никаниэль написал(а):

У меня есть еще одна проблемка... Посмотрите: http://fantasyrolegame.spybb.ru/viewtop … d=108#p135Каждая строчка поста, как видите, располагается слишком близко к предыдущей... липнет на нее(Как это исправить?

В первом окне стиля ищите:

Код:
/* B1.3 */
.punbb .post-content p {
  margin: 0;
  padding: 0 0 1em 0;
  line-height: [b][color=red][size=14]80%[/size][/color][/b];
  }

Выделенное красным значение увеличивайте до необходимого расстояния между строчками. Стандартное значение - 150%.

0

476

попутный ветер
Здравствуйте.

попутный ветер написал(а):

У меня почему-то рамка сдвинулась на форуме.

У меня всё нормально:

http://s1.uploads.ru/t/0jHv2.png

С какого браузера смотреть?

0

477

k.sama
Здравствуйте.

k.sama написал(а):

у меня возникла проблема на форуме, точнее сказать, проблема с текстом.(я копалась в самой структуре дизайна, тестировала его на пробнике, но там все в порядке!хотя может быть я ошиблась при проверке. Текст в сообщениях форума подчеркнутый.

Давайте адрес форума.

0

478

Rohipnol
Здравствуйте.

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

Проблема следующая

Давайте адрес форума.

0

479

Астра написал(а):

название категории должно стоять под черточкой, а не над ней.

Код:
/*************************************************************
A - SETUP
**************************************************************/

/* A1 Import the colour scheme
-------------------------------------------------------------*/

/* A1.1 */
  @import url(style_cs.css);

/* A2 Deal with browser defaults and wonkiness
-------------------------------------------------------------*/

/* A2.1 */
 body {margin-top: 0px; padding: 0}
html {margin-top: 0px; padding: 0px;}
/* A2.2 */
.punbb * {
  margin: 0
  }
   
/* A2.3 */
.punbb ul, .punbb dl, .punbb li, .punbb dd, .punbb dt {
  padding: 0;
  list-style: none;
  }

/* A2.4 */
.punbb img {
  border:none
  }

/* A2.5 */
.punbb .main table {
  table-layout: fixed;
  width: 100%;
  }

/* A2.6 */
.checkfield input[type=checkbox], .radiofield input[type=radio] {margin: 0 0.3em;}

/* A2.7 */
p[class=checkfield] *, div[class=checkfield] *, fieldset[class=radiofield] * {
  height: 1.8em;
  vertical-align: middle
  }


 /* A3 Text setup
-------------------------------------------------------------*/

/* A3.1 */
body {
  font-size: 100.01%;
  }

/* A3.2 */
.punbb {
  font: normal 68.75% Verdana, Tahoma, Arial, Trebuchet MS, Sans-Serif, Georgia, Courier, Times New Roman, Serif;
  }

/*A3.3 */
.punbb textarea, .punbb input, .punbb select, .punbb optgroup {
  font: 1em verdana, arial, helvetica, sans-serif
  }


/* A3.4 */
.punbb h1, .punbb h2, .punbb h3 {
  font-size: 1em;
  font-weight: bold;
  }

.punbb th {
  font-size: 0.9em;
  font-weight: normal;
  letter-spacing: 1px;
  }

.punbb h4, .punbb table {
  font-size: 1em;
  font-weight: normal;
  }

/* A3.5 */
.punbb h1 span, .punbb h2 span {
  font-size: 1.1em;
}

.punbb legend span {
  font-size: 1.1em;
  }

/* A3.6 */
.punbb pre {
  font: 1.1em/140% monaco, "bitstream vera sans mono", "courier new", courier, monospace
  }

/* A3.7 */
.punbb address, .punbb em {
  font-style: normal
  }

/* A3.8 */
.punbb .post-content em {
  font-style: italic
  }

/* A3.9 */
.punbb .post-content em.bbuline {
  font-style: normal;
  text-decoration: underline;
  }

/* A3.10 */
.punbb a {
  text-decoration: underline
  }

/* A3.11 */
.punbb optgroup {
  font-weight: bold;
  }


/* A4 Float clearing and hidden items
-------------------------------------------------------------*/

/* A4.1 */
#pun:after,
.punbb .container:after,
.punbb .post-links ul:after,
.punbb .main div.inline:after,
.punbb .post-box:after,
.punbb .linksb:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  overflow:hidden;
  line-height: 0.0;
  font-size: 0;
  }

/* A4.2 */
.acchide,
#pun-index #pun-main h1,
#pun-navlinks h2,
#pun-pagelinks h2,
#pun-status h2,
#pun-ulinks h2,
.punbb .forum h2,
.punbb .multipage .topic h2,
.punbb dl.post-sig dt span,
.punbb p.crumbs strong,
.punbb .divider hr,
.punbb .required label em,
.punbb .formsubmit label,
.punbb .submitfield label,
.punbb .modmenu label,
#pun-userlist .main h2 {
  font-size: 0;
  height: 0;
  width: 0;
  line-height: 0.0;
  position:absolute;
  left: -9999px;
  overflow: hidden
  }


/* A5 Basic page layout and borders
-------------------------------------------------------------*/

   /* A5.1 */
#pun {
  margin: 0px 0 0px 0;
  position: relative;
width: 812px; margin: 0 auto; float: center;
background: transparent url(http://s1.uploads.ru/i/Gj51n.jpg) repeat-y; background-position: top center;

  }

/* A5.2 */
.punbb {
  float: left;
  height: auto;
width: 770px;
padding-left: 21px;
padding-right: 21px;
  }


/* A5.3 */
#pun-redirect, #pun-maint {
  margin: 40px 20% 12px 20%;
  width: auto;
  float: none;
background: #dfdfdd;
  }

/* A5.4 */
.punbb .section, .punbb .main {
  margin-bottom: 1em;
  }

/* A5.5 */
.punbb .category, .punbb .post {
  margin-top: 0.4em;
  }

/* A5.6 */
.punbb #pun-category1, .punbb .toppost, .punbb .topicpost {
  margin-top: 0;
  }
http://danessa.mybb.ru/i/blank.gif
/* 5.7 */
#pun-post .topic {
  margin-top: 1em;
  }

/* A5.8 */
.punbb .section, .punbb .forum, .punbb .formal, .punbb .modmenu, .punbb .info,
.punbb .category, .punbb .post {
  border-style: none none solid none;
  border-width: 0px 0px 0px 0px
  }

/* A5.9 */
.punbb .container {
  border: none;

  }


/* A5.10 */
 .punbb .section h2, #pun-main h1, #pun-debug h2, #pun-main h2, #pun-stats h2,  #pun-main #post-form h2 {
  padding: 1.2em 1em 0.5em 1em;
  border: none;
  }


/*************************************************************
B - MAIN CONTENT - GENERAL
**************************************************************/

/* B1 Parsed Content, Signatures and Scroll Boxes
-------------------------------------------------------------*/

/* B1.1 */
.punbb .post-content {
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
  }

/* B1.2 */
.punbb .post-sig dt {
  display: block;
  border: 1px  solid;
 border-color: #c4c4c3;
  margin: 5px 0;
width: auto;
  }

/* B1.3 */
.punbb .post-content p {
  margin: 0;
  padding: 0 0 1em 0;
  line-height: 150%;
  }

/* B1.4 */
.punbb .post-content img {
  vertical-align: text-bottom
  }

/* B1.5 */
.punbb .post-content img.postimg {
  vertical-align: middle;
  }

/* B1.6 */
.punbb .post-content .blockcode, .punbb .post-content blockquote {
  width: 100%;
  overflow: hidden;
  }

/* B1.7 */
.punbb .post-content .scrollbox {
  width: 100%;
  overflow: auto;
  }

/* B1.8 */
.punbb .post-content .quote-box, .punbb .post-content .code-box {
  margin: 0.4em 1.4em 1.4em 0.8em;
  padding: 1em;
  border: double #54713e;
  }

/* B1.9 */
.punbb .quote-box cite, .punbb .code-box strong.legend {
  display: block;
  padding-bottom: 0.7em;
  font-size: 1.1em;
  font-weight: bold;
  font-style: normal;
  margin: 0;
  }

/* B2 Information boxes
-------------------------------------------------------------*/

/* B2.1 */
.punbb .info-box {
  padding: 1.1em 1.7em 1em 1.7em;
  border: none;
  margin: 0 0 1.1em 0;
  }

/* B2.2 */
.punbb .info-box * {
  padding: 0 0 0.7em 0;
  }

/* B2.3 */
.punbb #pun-main .info-box .legend {
  font-size: 1.1em;
  font-weight: bold;
  }


/* B3 Pagination and posting links
-------------------------------------------------------------*/

/* B3.1 */
.punbb .linkst {
  float: left;
  position: relative;
  width: 100%;
  font-size: 1.1em;
  height: 0;
  }

/* B3.2 */
.multipage {
  margin-top: 3em;
  }

/* B3.3 */
.linkst .pagelink {
  position: absolute;
  top: -6em;
  left: 1em;
  width: 24em;
}

/* B3.4 */
.linkst .postlink {
  position: absolute;
  top: -6em;
  right: 1em;
  width: 16em;
  text-align: right;
  font-weight: bold;
  }

/* B3.5 */
.punbb .linksb {
  text-align: right;
  padding: 0.4em 1em 0.5em 1em;
  font-size: 1.1em;

  }

/* B3.6 */
.linksb .pagelink {
  float: left;
  width: 24em;
  text-align: left;
  }

/* B3.7 */
.linksb .postlink {
  float: right;
  width: 16em;
  font-weight: bold
  }

/* B3.8 */
.subscribelink {
  clear:both;
  padding-top: 0.3em;
  padding-bottom: 0.5em;
  }


/*************************************************************
C - MAIN CONTENT - SPECIFIC
**************************************************************/

/* C1 Form layout
-------------------------------------------------------------*/

/* C1.1 */
.punbb .formal .container {
  padding: 1.7em 2.3em 1.1em 2.3em;
  }

/* C1.2 */
.punbb .formsubmit {
  padding: 0 0 0 1.7em;
  margin: 1em 0 0 0;
  }

/* C1.3 */
.punbb .formsubmit input, .punbb .formsubmit a, .punbb .formsubmit span {
  margin: 0 0.6em 0 0
  }

/* C1.4 */
.punbb fieldset {
  border-style: solid;
  border-width: 1px;
  padding: 0 18px 0 18px;
  margin: 0 0 1em 0
  }

/* C1.5 */
.punbb fieldset legend {
  padding: 0;
  margin: 0 0 0 11px;
  font-size: 1.1em
  }

/* C1.6 */
.punbb fieldset legend span {
  padding: 0 5px;
  margin: 0 0 0 -15px;
  }

/* C1.7 */
.punbb fieldset fieldset {
  border-style: none;
  margin: 0;
  padding: 0 0 8px 0
  }

/* C1.8 */
.punbb .fs-box {
  padding: 1em 0 0.8em 0;
  }

/* C1.9 */
.punbb .fs-box p, .punbb .fs-box fieldset {
  padding: 0 0 0.8em 0
  }

/* C1.10 */
.punbb .inline .inputfield, .punbb .inline .selectfield, .punbb .inline .passfield {
  float: left;
  margin-right: 1em;
  }

/* C1.11 */
.punbb .inline .infofield {
  clear:both;
  }

/* C1.12 */
.punbb .datafield br {
  display: none
  }

/* C1.13 */
.punbb .required label, .punbb .datafield span.input {
  font-weight: bold
  }

/* C1.14 */
.punbb .datafield span.input a {
  font-weight: normal;
  }

/* C1.15 */
.punbb .areafield span.input, .punbb p.longinput span.input {
  display: block;
  padding: 0 4em 0 0;
  height: 100%; /* For IE */
  }

/* C1.16 */
.punbb textarea, .punbb .longinput input {
  width: 64%;
  margin: 0;
  }

/* C1.17 */
.punbb .hashelp {
  position: relative;
  }

/* C1.18 */
.punbb .helplinks {
  display: block;
  position: absolute;
  top: 1em;
  right: 0;
  font-weight: normal;
  width: 36%;
  }

/* c1.19 */
.punbb #profile .helplinks {
  top: 1.5em;
  }

/* C1.20 */
.punbb .helplinks span {
  display: block;
  padding-bottom: 0.2em;
  }

.punbb .helplinks span INPUT {
  margin: 0px 2px 2px 0px;
}

/* C1.21 */
#pun-post .formal .info-box li {
  padding-left: 4px;
  list-style-type: square;
  list-style-position: inside;
  line-height: 1.5;
  margin: 0;
  }


/* C2 Table layout
-------------------------------------------------------------*/

/* C2.1 */
.punbb .main .tcl {
  overflow: hidden;
  text-align: justify;
  width: 50%;
  }

/* C2.2 */
.punbb .main .tc2, .punbb .main .tc3, .punbb .main .tcmod {
  text-align: center;
  width: 10%;
  }

/* C2.3 */
.punbb .main .tcr {
  overflow: hidden;
  text-align: right;
  width: 30%;
  }

/* C2.4 */
#pun-userlist .main .tcl,
#pun-searchtopics .main .tcl,
#pun-modviewforum .main .tcl {
  width: 40%
  }

/* C2.5 */
#pun-userlist .main .tc2,
#pun-searchtopics .main .tc2 {
  text-align: right;
  width: 20%;
  }

/* C2.6 */
#pun-debug table .tcl {
  width: 15%;
  white-space:normal;
  }

/* C2.7 */
#pun-debug .tcr {
  width: 90%;
  white-space: normal;
  }

/* C2.8 */
#pun-index .tcl h3 {
  font-size: 1.2em;
  font-weight: bold;
  }

/* C2.9 */
.punbb td span.youposted {
  font-weight: bold;
  margin-left: -1em;
  position: absolute;
  }

/* C2.10 */
.punbb td .modlist {
  display: block;
  padding-top: 0.3em
  }

/* C2.11 */
.punbb .main td {
  border-style: dashed none none dashed;
  border-width: 1px 0 0 1px;
  padding: 0.8em 1em;
  }

/* C2.12 */
.punbb .main th {
  border: none;
  padding: 3px 1em 5px 1em;
  }

/* C2.13 */
.punbb .main .tcl {
  border-left-style: none;
  border-left-width: 0;
  }

* html .tclcon {height: 1px}

/* C2.14 */
.punbb td div.tclcon {
	margin-left: 70px;
}

/* C2.15 */
.punbb div.icon {
	float: left;
    display: block;
    width: 60px;
    height:60px;
}

/* Фикс */
#pun-main .category .container {overflow: hidden; }

 /* C3 Topics
-------------------------------------------------------------*/

/* C3.1 */
.punbb .post .container {
  border: none;
  margin-top: -1px;
  padding-bottom: 1px;
  }

/* C3.2 */
.punbb .post h3 {
  border: none;
  }

.post-author ul {
margin: 0 0 1em 0;
padding: 1em 8px 0.8em 8px;
text-align: center;
}

/* C3.3 */
.punbb .post h3 span {
  border:none;
  padding: 0.5em 1em;
  display: block;
  margin-left: 19em;
  }

/* C3.4 */
.punbb .post h3 strong {
  float: right;
  width: 5em;
  text-align: right;
  font-weight: normal;
  }

/* C3.5 */
.punbb .post .post-author {
  float: left;
  width: 19em;
  margin-top: -1.8em;
  overflow: hidden;
  }

.punbb .post li.pa-author {
  padding-bottom: 0.2em;
  }

/* C3.6 */
.punbb .post .post-author ul, .punbb .post .post-author p {
  padding: 1em 1em 1em 1em;
  line-height: 140%;
  }

/* C3.7 */
.pa-author {
  font-size: 1.1em;
font-weight: bold;
text-align: center;
}

/* C3.8 */
.pa-author a {
  text-decoration: none;
  }


/* C3.9 */
li.pa-title {
  padding-bottom: 0.4em;
  color:black;
  }


li.pa-online {
  line-height: 1.2em;
  border-left-style: solid;
  border-left-width: 0px;
  padding-left: 0em;
  margin-top: 0.7em;
text-align: center;
  }

/* C3.11 */
.punbb .post-body {
  margin-left: 19em;
  border: none;
  padding: 0 0 1px 0;
  }

/* C3.12 */
.punbb .post-box {
  padding: 1em;
  }

/*C3.13 */
.punbb fieldset .post-box {
  margin-bottom: 0.8em
  }

/* C3.14 */
.punbb .post-links {
  margin-left: 19em;
  border: none;
  }

/* C3.15 */
.punbb .post-links ul {
  padding: 0 1em 0 0;
  height: 2em;
  line-height: 2em;
  margin-left: -19em;
  border: none;
  background: transparent;
  text-align: right;
  }

/* C3.16 */
.punbb .post-links li {
  display: inline;
  padding-left: 1em;
  }

/* C3.17 */
.pl-email, .pl-website {
  float: left;
  }

/* C3.18 */
.punbb .clearer {
  clear: both;
  height: 0;
  font-size: 0;
  }


/* C4 Moderator menu
-------------------------------------------------------------*/

/* C4.1 */
.punbb .modmenu .container {
        margin-top: 4px;
  padding: 0.5em 1em;
  text-align: right;
  }

/* C4.2 */
.punbb .modmenu strong, .punbb .modmenu a {
  height: 1.8em;
  line-height: 1.8em;
  }

/* C4.3 */
.punbb .modmenu .container strong {
  float: left;
  }

/* C4.4 */
.punbb .modmenu input {
  margin-left: 1em;
  }


/* C5 Message boxes
-------------------------------------------------------------*/

/* C5.1 */
.punbb .info .container {
  padding: 0.8em 1em
  }

/* C5.2 */
.punbb .info .container .backlink {
  padding-top: 0.8em;
  }


/* C6 Profile
-------------------------------------------------------------*/

/* C6.1 */
#profile .container {
  padding-left: 18.6em;
  }

/* C6.2 */
#profilenav {
  float: left;
  width: 14em;
  margin-left: -16.3em;
  display: inline;
  }

/* C6.3 */
#profilenav li {
  padding-bottom: 0.8em;
  font-weight: bold;
  }

/* C6.4 */
#viewprofile ul, #profilenav ul {
  border-style: solid;
  border-width: 1px;
  padding: 1.5em 18px 0.8em 18px;
  margin: 0 0 1em 0;
  }

/* C6.5 */
#viewprofile h2, #profilenav h2 {
  background: transparent;
  border: none;
  padding: 0 0 0 0;
  margin: 0 14px -0.6em 14px;
  }

/* C6.6 */
#viewprofile h2 span, #profilenav h2 span {
  padding: 0 5px;
  position: relative;
  }

/* C6.7 */
#viewprofile li, #setmods dl {
  padding: 0 0 0 16em;
  margin-bottom: 0.2em;
  }

/* C6.8 */
#viewprofile li span {
  float: left;
  width: 14em;
  margin-left: -16em;
  padding: 0.5em 1em;
  font-weight: bold;
  }

/*C6.9 */
#setmods dt {
  float: left;
  width: 14em;
  margin-left: -16em;
  padding: 0.8em 1em;
  font-weight: bold;
  display: inline;
  }

/* C6.10 */
#viewprofile li strong, #viewprofile li div, #setmods dd {
  display: block;
  padding: 0.5em 1em;
  font-weight: normal;
  }

/* C6.11 */
.punbb img.avatardemo {
  float: right;
  margin: 0 0 0.8em 1.8em
  }


/* C7 User list
-------------------------------------------------------------*/

/* C7.1 */
#pun-userlist .formal, #pun-userlist .formal .container {
  border-bottom: none;
  margin-bottom: 0;
  }

/* C7.2 */
#pun-userlist .usertable .container {
  padding: 0 2.3em 2.3em 2.3em;
  border-top: none;
  }

/* C7.3 */
#pun-userlist .usertable table {
  border-style: solid;
  border-width: 1px;
  }


/*************************************************************
D - PUNBB SECTIONS OTHER THAN MAIN CONTENT
**************************************************************/

/* D1 Logo and description
-------------------------------------------------------------*/

/* D1.1 */
#pun-title {
margin-top: 0px;
border: none;
margin-bottom: -200px
}

/* D1.2 */
#pun-title h1 {
        display : block;
        margin: 0;
}

/* D1.3 */
#pun-title .container {
  border: none;
  }

/* D1.4 */
#pun-title h1 span {
        display: none;
}

#pun-title table {
	border: none;
background-image : url(http://s1.uploads.ru/i/gSpLs.jpg);
height:461px;
background-position: center;
background-repeat: no-repeat;
width:812px;
color: transparent;
margin: 0 21px 0 -21px;
}

#pun-title TD.title-logo-tdl {
        border: none;
        width: 100%;
}

#pun-title TD.title-logo-tdr {
        border: none;
        padding-right: 0px;
}

#pun-title .title-logo {
color: transparent;
}

/* D2 Page navigation
-------------------------------------------------------------*/

/* D2.1 */
#pun-pagelinks {
  position: absolute;
  top: -15px;
  left: 0;
  margin: 0;
  border: none;
  padding: 0;
  width: 100%;
  }

/* D2.2 */
#pun-pagelinks .container {
  background: transparent;
  border: none;
  padding: 0
  }

/* D2.3 */
#pun-pagelinks .container li {
  display: inline
  }

/* D2.4 */
#pun-pagelinks li a, #pun-pagelinks a:link, #pun-pagelinks a:hover {
  height: 2em;
  line-height: 2em;
  padding: 0;
  font-size: 1.2em;
  margin-left: -9999px;
  display: block;
  float:left;
  width: 100%;
  }

/* D2.5 */
#pun-pagelinks a:active, #pun-pagelinks a:focus {
  position:relative;
  margin: 0;
  }

#pun-pagelinks li a span {
  display:block;
  margin: 0 1em
  }

/* D3 Forum navigation
-------------------------------------------------------------*/

/* D3.1 */
#pun-navlinks {
  border: none;
  margin: 0;
  margin-bottom: 0px;
}

/* D3.2 */
#pun-navlinks .container {
float: left;    margin-top: 100px;
    font-size: x-small;
    font-weight: bold;
    line-height: 14px;
    padding: 0.7em 0em;
    text-align: center;
    width: 350px;
  }


/* D.3 */
#pun-navlinks li {
display: inline;
    padding-bottom: 0em;
    padding-right: 0.6em;

}

/* D3.4 */
#pun-navlinks li a {
  font-size: 14px;
  }

/* D4 User links
-------------------------------------------------------------*/

/* D4.1 */
#pun-ulinks  {
margin-top: 145px;
padding-bottom: 30px;
  }

/* D4.2 */
#pun-ulinks .container {
border-top: medium none;
    float: left;
    font-size: x-small;
    font-weight: normal;
    line-height: 13px;
margin: 0 0px 0 0;
    padding: 0.7em 0.8em;
    text-align: center;
    width: 350px;
  }


/* D4.3 */
#pun-ulinks li, #pun-ulinks li a {
border-left-width: 1px;
    display: inline;
    white-space: nowrap;
  }

/* D4.4 */
#pun-ulinks li a {
  padding: 0 0.3em 0 0em
text-transform: uppercase;
  }

/* D4.5 */
#pun-ulinks li.item1, #pun-ulinks li.item1 a {
  border: none;
  padding-left: 0
  }

/* D5 Welcome box and Top Breadcrumbs
-------------------------------------------------------------*/

/* D5.1 */
#pun-status, #pun-status .container {
  border-bottom: none;
  margin-bottom: 0;
  }

/* D5.2 */
#pun-status .container {
  padding: 0.8em 1em 1em 1em;
  }

/* D5.3 */
#pun-status span {
  white-space: nowrap;
  margin-right: 0.5em;
  }

/* D5.4 */
#pun-crumbs1 {
  font-weight: bold;
  overflow: hidden;
  margin-top: 0;
  }

/* D5.5 */
#pun-crumbs1 p.container {
  border-top: none;
  padding: 1em 1em 0.8em 1em;
  font-size: 1.1em;
  }

/* D5.6 */
#pun-break1 {
  margin: 0 1em;
  border-style: solid none;
  border-width: 1px 0;
  height: 0;
  margin: -2px 1em;
  position: relative;
  z-index: 1;
  }

/* D6 Announcement
-------------------------------------------------------------*/

/* D6.1 */
#pun-announcement h2 {
  padding: 0;
  margin: 0 1em -3.5em 1em;
  border-style: none none solid none;
  border-width: 0 0 1px 0;
  position: relative;
  font-weight: bold;
  }

/* D6.2 */
#pun-announcement h2 span {
  display: none;
  padding: 1em 0 0.8em 0;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  }

/* D6.3 */
#pun-announcement .container {
  padding: 5em 1em 1em 1em;
  }

/* D7 Statistics
-------------------------------------------------------------*/

/* D7.1 */
#pun-stats .container {
  padding: 0.8em 1em
  }

/* D7.2 */
#pun-stats li.item1, #pun-stats li.item2 {
  float: left;
  clear: both;
  line-height: 150%;
  }

/* D7.3 */
#pun-stats li.item3, #pun-stats li.item4 {
  text-align: right;
  line-height: 150%;
  }

/* D7.4 */
li#onlinelist {
  margin-top: 0em;
  border-top-style: solid;
  border-top-width: 1px;
  float: left;
  width: 100%;
  line-height: 130%;
  }

/* D7.5 */
li#onlinelist div {
  border-top-style: solid;
  border-top-width: 1px;
  padding: 0.7em 0 0 0;
  }

/* D8 Quick Jump - About - Bottom Breadcrumbs
-------------------------------------------------------------*/

/* D8.1 */
#pun-qjump {
  margin: 0;
  border: none;
  width: 50%;
  position: relative;
  float: left;
  }

/* D8.2 */
#pun-qjump .container {
  border: none;
  background: transparent;
  padding: 0.8em 1em;
  }

/* D8.3 */
#pun-about {
  margin: 0;
background: url("http://s1.uploads.ru/i/wYMCN.jpg") no-repeat scroll center top transparent;
    border-top-style: none;
    height: 120px;
width: 812px;
margin: 0 -21px -15px -21px;
  }

/* D8.4 */
#pun-about .container {
  border-top-style: none;
  text-align: right;
  line-height: 150%;
  padding: 0.8em 1em;
  }

/* D8.5 */
#pun-about p span {
  display:block;
  padding-left: 50%;
  padding: 0.8em 4em;
  }

/* D8.6 */
#pun-crumbs2 {
  font-weight: bold;
  overflow: hidden;
  margin-bottom: 0;
  border-bottom: none;
  }

/* D8.7 */
#pun-crumbs2 .container {
  border-bottom: none;
  padding: 0.8em 1em;
  font-size: 1.1em;
  }

/* D8.8 */
#pun-break4 {
  margin: -2px 1em;
  border-style: solid none;
  border-width: 1px 0;
  position: relative;
  height: 0;
  z-index: 1;
  }

/* D8.9 */
div.punbb-admin #pun-about .container {
  border-top-style: solid;
  border-top-width: 1px;
  }


/* D9 Help file
-------------------------------------------------------------*/

/* D9.1 */
#pun-help .formal .info-box h3.legend {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding-bottom: 0;
  margin-bottom: 0.8em;
  }

/* D9.2 */
#pun-help .formal .info-box h3.legend span {
  padding-bottom: 0.6em;
  display: block;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  font-size: 1.1em;
  }

/* D9.3 */
#pun-help .formal p, #pun-help .formal dd {
  margin-bottom: 1em
  }

/* D9.4 */
#pun-help .formal ul, #pun-help .formal dl {
  padding: 0 0 0 1em
  }

/* D9.5 */
#pun-help .formal li {
  padding: 0;
  line-height: 130%
  }

/* D9.6 */
#pun-help .formal li * {
  vertical-align: text-top
  }

/* D9.7 */
#pun-help .formal dt span {
  font: 1.4em/120% monaco, "bitstream vera sans mono", "courier new", courier, monospace
  }

/* D9.8 */
#pun-help .formal .parsedmsg, #pun-help .formal .parsedmsg .incode {
  padding-bottom: 0;
  }
Код:
/* CS1 Background and text colours
-------------------------------------------------------------*/
body, html   {background: #2f3c25 url(http://s1.uploads.ru/i/bJ32R.jpg) repeat center top fixed;}

.forum .tclcon a {
  font-weight: bold;
}


/* CS1.1 */
.punbb .main .container,
.punbb .section .container,
.punbb .section .formal .container,
.punbb .formal fieldset,
#viewprofile li strong, #viewprofile li div,
#setmods dd, .punbb-admin #pun-admain .adcontainer,
.punbb .info-box, .punbb #pun-main .info-box .legend {
  background-color: transparent;
  color:black;
  }

/* CS1.2 */
.punbb .post-body,
.post-box,
.punbb .post-links,
.punbb .post h3,
.punbb .post .container {
  background-color:  transparent;
  color: black;
}


/* CS1.3 */
#pun-stats h2, .punbb .main h1, .punbb .main h2, #pun-debug h2 {
  background: url(http://s1.uploads.ru/i/jc6JH.png) transparent no-repeat top center;
color:#1a2b14;
text-align: center;
font-style: italic;
font-family: Palatino Linotype; 
font-variant: small-caps;
font-size: 17px;
font-weight: bold;
}

.punbb thead {display:none;}

/* CS1.4 */
.punbb .modmenu .container {
  background-color: transparent;
  color: black;
  }

/* CS1.5 */
.punbb legend span, #viewprofile h2 span, #profilenav h2 span, .punbb-admin #pun-admain legend span {
  background-color:  transparent;
  color: black;
  }

.punbb .post h3 strong {
  font-size: 0.9em;
  color: black;
  text-decoration: none;
}

/* CS1.7 */
.punbb .quote-box, .punbb .code-box {
  background-color: #dedfda;
  color: black;
}


.punbb textarea, .punbb select, .punbb input {
  background-color: #ffffff;
  color: black;
border-radius:5px;
-webkit-border-radius:5px;
-khtml-border-radius:5px;
-moz-border-radius:5px;
-o-border-radius:5px;
}

/* CS1.8 */
#pun-navlinks .container {
  background: transparent;
  color: black;
  }

#pun-ulinks .container {
  background: transparent;
}

.offline li.pa-online strong {
  font-weight: normal;
  }

.punbb th {
  color: black;
  background: transparent;
}

/* CS2 Border colours
-------------------------------------------------------------*/

#pun-title, #pun-navlinks {
  border-color: transparent;
}

#pun-ulinks .container {
  border-color: transparent;
}

.punbb .post .container {
  border-top-color: transparent;
}

/* CS2.1 */
.punbb .container, .punbb .post-body, .post h3 {
  border-color: transparent;
  }

/* CS2.2 */
.punbb .section, .punbb .forum, .punbb .formal, .punbb .modmenu, .punbb .info,
.punbb .category, .punbb .post {
  border-color: transparent;
  }

.punbb .post h3,
.punbb .post h3 span {
  border-bottom: transparent;
}

/* CS2.3 */
#pun-stats h2, .punbb .main h1, .punbb .main h2, #pun-debug h2, .punbb-admin #pun-admain h2 {
  border-color: transparent;
  }

/* CS2.4 */
.punbb fieldset {
  border-color: transparent;
  }

.punbb td, #viewprofile ul, #profilenav ul, .punbb .post .post-body,
.punbb .post h3 span, .post-links ul, .post-links, .usertable table {
  border-color: transparent;
  }

/* CS2.5 */
.punbb th {
  border-color: transparent;
  }

/* CS2.6 */
.punbb .quote-box, .punbb .code-box {
  border-color: transparent;
  }

#pun-ulinks li, #pun-announcement h2 span, li#onlinelist, #pun-help .formal .info-box h3.legend span {
  border-color: transparent;
  }

#pun-ulinks li a, #pun-announcement h2, li#onlinelist div, #pun-help .formal .info-box h3.legend {
  border-color: transparent;
  }

.punbb .divider {
  border-color: transparent;
  }


.punbb .formal fieldset .post-box, .punbb .info-box {
  border: transparent;
  }

li.pa-online {
  border-left-color: transparent;
  }

/* CS3 Links
-------------------------------------------------------------*/

/* CS3.1 */
.punbb a, .punbb a:link, .punbb a:visited,
.punbb-admin #pun-admain a, .punbb-admin #pun-admain a:link, .punbb-admin #punbb-admain a:visited {
  color: #54713e;
text-decoration: none;

}

.punbb li.isactive a, .punbb li.isactive a:link, .punbb li.isactive a:visited {
  color: #54713e;
text-decoration: none;
  padding-bottom: 0.4em;
text-decoration: none;

  }

/* CS3.2 */
.punbb a:hover, .punbb a:focus, .punbb a:active,  .punbb-admin #pun-admain .nodefault,
.punbb-admin #punbb-admain a:hover, .punbb-admin #punbb-admain a:focus, .punbb-admin #punbb-admain a:active {
  color: #223712;
  }

/* CS3.3 */
#pun-navlinks a {
  color: #425334;
  text-decoration: none;
  }

/* CS3.4 */
#pun-navlinks a:hover, #pun-navlinks a:focus, #pun-navlinks a:active {
  color: #536943;
  text-decoration: none;
  }

#pun-ulinks a {color: #536943;
text-decoration: none;border: none;}

#pun-ulinks a:hover, #pun-navlinks a:focus, #pun-navlinks a:active {
  color: #425334;
  text-decoration: none;}


/* CS4 Post status icons
 -------------------------------------------------------------*/

div.icon {
        background: url(http://s1.uploads.ru/i/RXgPu.png) no-repeat;
}

tr.inew div.icon {
        background: url(http://s1.uploads.ru/i/zul5F.png) no-repeat;
}

tr.iclosed div.icon {
        background: url(http://s1.uploads.ru/i/Gr7Dz.png) no-repeat;
}


tr.isticky div.icon {
        background: url(http://s1.uploads.ru/i/k0sFR.png) no-repeat;
}

.punbb .main h1 span, .punbb .main h2 span, #pun-stats h2 span {
        background:transparent;
}

#profilenav h2 span, #viewprofile h2 span {background-image: none}

td.tcr a{
        background: transparent;
}

#pun-stats ul.container {
        background:  transparent;
}

#pun-crumbs2 .container, #pun-about .container, #pun-stats div.statscon {
        background-color:  transparent;
}

#pun-title table tbody tr .title-logo-tdr {position: absolute; z-index: 1; left: 347px; top: 370px
}


a.tvm, a.tvm:active, a.tvm:link, a.tvm:visited {
font-family: tahoma;
font-size: 13px;
background-color:#486841;
color: #fff; 
font-weight: normal;
text-align:center;
display: block;
margin: 1px;
padding: 2px;
text-decoration: none;
border-left-style: solid;
border-left-color: #2d4029;
border-left-width: 5px;
width:200px;
}

a.tvm:hover {
font-family: tahoma;
font-size: 13px;
color: #fff; 
background-color:#2d4029;
display: block;
font-weight: bold;
text-align:center;
cursor:pointer; 
text-decoration: none;
border-left-style: solid;
border-left-color: #486841;
border-left-width: 5px;
width:200px;
}

Так что-ли?

+1

480

Лягушатинка написал(а):

Можно ли сменить у кнопочки (см. скрин) белый цвет на свой?

Код:
<style type="text/css">
.punbb select {
  background-color: #ffffcc !important;
}
</style>

0


Вы здесь » Единый форум поддержки » Корзина » Общие вопросы по оформлению (45)