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

Gesior - My Website is messed up :S

Wifebeater

New Member
Joined
Feb 24, 2011
Messages
60
Reaction score
1
Hi,

hahaix.png
[/URL] Uploaded with ImageShack.us[/IMG]

You see the area i marked with red, i want that moved more to the right.

If you use a smaller resolution than me, it covers the text and you cant see the news, how do i change this shit? :O please help me lol

kthx / wifebeater <3
 
Did you changed something in latestnews.php or layout.php?

It seems News div is inside News Ticker div, to make it out, try to add </div>
 
Starts as <div>, should end as </div>.

PHP:
<div>
<div>
</div>
<div>
<div>
</div>
</div>

If you can find the missing division start/end in my example, you can find the news ticker missing division end.
 
It's pure logic, for every <div> you open, there must be a </div>

You have like:

HTML:
<div id ="Newsticker"/>
<div id ="News"/>
</div>
</div>

Where it should be:

HTML:
<div id ="Newsticker"/>
</div>
<div id ="News"/>
</div>
 
Back
Top