• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Website little problem

Dankoo

Active Member
Joined
Sep 4, 2010
Messages
1,007
Reaction score
27
How to solve this? :x

33jjlvc.jpg


PHP:
.Content #FeaturedArticle #TeaserText {
  height: 130px;
  overflow: hidden;
  z-index: 0;
  margin: 0 0 0 0;
}

.Content #FeaturedArticle #Link {
  position: absolute;
  top: 130px;
  right: 160px;
  z-index: 99;
  margin-right: 10px;
}

PHP:
			<div id="featuredarticle" class="BoxContent" style="background-image:url('.$layout_name.'/images/content/scroll.gif);">
				<div id=\'TeaserThumbnail\'><img src="'.$layout_name.'/images/news/features.jpg" width=150 height=100 margin: 0px border=0 alt="" /></div>
				<div id=\'TeaserText\'>
				<div id=\'link\'><a href="http://tibiabrorg.forumeiros.com/t1-sistema-anti-bot#1"/>» Leia mais</a></div>
					<div style="position: relative; top: 0px; margin-bottom: 0px;" >
						<b>Titleo</b>
					</div><br/>Pensando nisso, o TibiaBR.org desenvolveu um sistema anti-bot que não pune os botters, mas bonifica os que não usam, saiba mais sobre o assunto e claro, dê sua opinião, clicando no link abaixo.</i><br/>
				</div>


Full featuredarticle css
PHP:
.Content #FeaturedArticle .BoxContent {
  position:absolute;
  height: 90px;
  padding: 2px;
  padding-left: 2px;
  min-height: 90px;
  height: auto !important;
  height: 90px;
  line-height: 10.5pt;
}

.Content #FeaturedArticle #TeaserThumbnail {
  position: relative;
  top: 0px;
  right: 0px;
  height: 90px;
  width: 150px;
  margin-left: 5px;
  background-color: black;
  z-index: 90;
  float: right;
  text-align:right;
}

#ContentHelper #FeaturedArticle:first-child .BoxContent {
  padding: 10px;
}

.Content #FeaturedArticle #TeaserText {
  height: 130px;
  overflow: hidden;
  z-index: 0;
  margin: 0 0 0 0;
}

.Content #FeaturedArticle #Link {
  position: absolute;
  top: 130px;
  right: 160px;
  z-index: 99;
  margin-right: 10px;
}

.Content #FeaturedArticle .NewsHeadlineBackground {
  position: relative;
  height: 28px;
  margin-bottom: 5px;
  background-repeat: repeat-x;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
}

.Content #FeaturedArticle .NewsHeadlineIcon {
  position: absolute;
  top: -1px;
  left: 0px;
  margin-left: 5px;
  margin-right: 5px;
  float:left;
}

.Content #FeaturedArticle .NewsHeadlineDate {
  font-size: 7pt;
  position: absolute;
  top: 9px;
  left: 50px;
  width: 85px;
  color: white;
}

.Content #FeaturedArticle .NewsHeadlineText {
  position: relative;
  top: 8px;
  left: 135px;
  font-size: 10pt;
  font-weight: bold;
  color: white;
}

Full featuredarticle latestnews.php:

PHP:
//featured article
$news_content .= '
	<div id="news" class="Box">
	<div class="Corner-tl" style="background-image:url('.$layout_name.'/images/content/corner-tl.gif);"></div>
	<div class="Corner-tr" style="background-image:url('.$layout_name.'/images/content/corner-tr.gif);"></div>
	<div class="Border_1" style="background-image:url('.$layout_name.'/images/content/border-1.gif);"></div>
	<div class="BorderTitleText" style="background-image:url('.$layout_name.'/images/content/title-background-green.gif);"></div>
	<img class="Title" src="'.$layout_name.'/images/header/headline-featuredarticle.gif" alt="Contentbox headline" />
	<div class="Border_2">
		<div class="Border_3">
			<div id="featuredarticle" class="BoxContent" style="background-image:url('.$layout_name.'/images/content/scroll.gif);">
				<div id=\'TeaserThumbnail\'><img src="'.$layout_name.'/images/news/features.jpg" width=150 height=100 margin: 0px border=0 alt="" /></div>
				<div id=\'TeaserText\'>
				<div id=\'link\'><a href="http://tibiabrorg.forumeiros.com/t1-sistema-anti-bot#1"/>» Leia mais</a></div>
					<div style="position: relative; top: 0px; margin-bottom: 0px;" >
						<b>Title</b>
					</div>
Pensando nisso, o TibiaBR.org desenvolveu um sistema anti-bot que não pune os botters, mas bonifica os que não usam, saiba mais sobre o assunto e claro, dê sua opinião, clicando no link abaixo.</i><br/>
				</div>
			</div>
		</div>
	</div>
	<div class="Border_1" style="background-image: url('.$layout_name.'/images/content/border-1.gif);"></div>
	<div class="CornerWrapper-b"><div class="Corner-bl" style="background-image: url('.$layout_name.'/images/content/corner-bl.gif);"></div></div>
	<div class="CornerWrapper-b"><div class="Corner-br" style="background-image: url('.$layout_name.'/images/content/corner-br.gif);"></div></div>
	</div>
';
 
Back
Top