• 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!

geisor aac help rep++

shawntio

Member
Joined
Apr 14, 2008
Messages
737
Reaction score
5
Location
sweden
Hi, I added Featured Article to my homepage but It got a little bugged heres a pic
2dqrc0p.jpg

the problem Is that you can scroll the page to the right :/
heres the Featured Article code I use please reply thanks!
Code:
//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 class="BoxContent" style="background-image:url('.$layout_name.'/images/content/scroll.gif);">
                <div style="position: relative; top: 0.5px; right: -596px; margin-bottom: -70px;" > <img src="'.$layout_name.'/images/news/features.jpg" width=150 height=100 border=0 alt="" /></div>
                <div id=\'TeaserText\'>
                    <div style="position: relative; top: -35px; margin-bottom: 2px;" >
                        <b>A Visit to Venore</b>
                    </div>
<div style="position: relative; top: -48px; margin-bottom: 2px;" ><br/>
We invite you to a journey to Venore, a wealthy city ruled by powerful merchants. Want to</ul><br /> learn more? Reach for the Venore City Guide, recommended by Amaro de Quester, brave</ul><br /> adventurer. (<i>Tibia City Guide writers do not accept payments in exchange for positive coverage of</ul><br /> any sort.</i>)<br/></div>
                </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>
 
Try my code instead. Need to be configured to look like yours though.

Code:
//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 class="BoxContent" style="background-image:url('.$layout_name.'/images/content/scroll.gif);">
                    <div id=\'TeaserText\'>
                        <div style="position: relative; top: -2px; margin-bottom: 2px;" >
                            <br><b>Visit to Venore</b>
                        </div><br/>
We invite you to a journey to Venore, a wealthy city ruled by powerful merchants. Want to</ul><br /> learn more? Reach for the Venore City Guide, recommended by Amaro de Quester, brave</ul><br /> adventurer. (<i>Tibia City Guide writers do not accept payments in exchange for positive coverage of</ul><br /> any sort.</i>)<br/>
    <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>
';
 
Last edited:
Back
Top Bottom