Между загoловком статьи h1/h2 и самим содержимым статьи откуда-то берётся лишнее растояние. Содержимое выводится внутри DIV, пробовал задавать параметры margin: 0 0 0 0; padding: 0 0 0 0; как самому DIV, так и h1/h2 и всё равно получаю откуда-то это расстояние. Как это расстояние убрать/изменить?
Re: Расстояние между загаловком и содержимым статьи а текст в каком теге ? думаю в "p" - там и есть скорее всего margin или padding
Re: Расстояние между загаловком и содержимым статьи Тестсайт: http://roundertest1.0fees.net/ Текст и DIV в котором находится. Index.php: Код (CODE): <div class="center"><div class="centercontent"><jdoc:include type="component" style="xhtml" /> CSS: Код (CODE): .center { background: #fff7df; min-height: 500px; margin: 0 0 0 0; padding: 0 0 0 0; } .centercontent { font-family: 'Times New Roman', Times, serif; font-size: 1.0em; text-align: justify; width: 1000px; margin: 0 auto; /* padding-top: 8px; */ color: #525252; margin: 0 0 0 0; padding: 0 0 0 0; }
Re: Расстояние между загаловком и содержимым статьи у тега p есть стандартный margin Можно так: Код (PHP): .contentpaneopen p { margin: 0px; } и вообще советую при верстке первым делом очищать все стили, например так: Код (PHP): html,body,div,span,applet,object,iframe,caption,del,dfn,em,font,ins,kbd,q,s,samp,small, strike,strong,sub,sup,tt,var,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address, big,cite,code,dl,dt,dd,ol,ul,li,fieldset,form, label,legend {vertical-align: baseline;font-size: 100%;outline: 0;padding: 0;margin: 0;border: 0;} /* remember to define focus styles! */ :focus {outline: 0;} body {background: white;line-height: 1;color: black;} ol,ul {list-style: none;} /* tables still need cellspacing="0" in the markup */ table{border-collapse: separate;border-spacing: 0;} caption,th,td {font-weight: normal;} /* remove possible quote marks (") from <q> & <blockquote> */ blockquote:before,blockquote:after,q:before,q:after {content: "";} blockquote,q {quotes: "" "";} /* ||| the end |||*/ /* ||| set of clearing floats |||*/ .clearfix:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;} .clearfix {display: inline-block;} .clr {font-size : 1px;} /* Hides from IE-mac \*/ * html .clearfix {height: 1%;} .clearfix {display: block;} .clear {clear: both;} /* End hide from IE-mac */ img { border: none; } a { position: relative; cursor: pointer; }