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

Muzode

New Member
Joined
Jan 3, 2009
Messages
14
Reaction score
0
Hello, my web site come without logo, so, i put the mine.
Now it are like this:


What should i do for stay right? (starting of the tree +/-)

I think one part important of script are this:

<body>
<div id="page">
<div id="logo-art">
<div id="logo-box">
<div id="logo"><img src="images/logo.png"/></div>
</div>
<div id="cnt-box">
<div id="cnt-container">
<div id="cnt-left">
<div id="menu">
<div id="menu-top">News</div>
<div id="menu-cnt">
<ul>
<li>
<ul>
<li><a href="index.php?subtopic=latestnews">Latest News</a></li>
</ul>
</li>
</ul>

Thanks for all!
 
I'm not sure if I really understand what you are asking for. And that clip of code really doesn't help much since you probably have external or embedded css somewhere else.

However, it sounds like you want to move your logo around on the page? If so you can try a quick dirty way with absolute positioning:

HTML:
<div id="logo" style="position:absolute; right:100px;">
       <img src="images/logo.png"/>
</div>

So you can try that and just adjust the value 100px to get it where you want on the screen. If you want it to move in different directions you can also try top, bottom or left properties and negative values

Hopefully that will work since inline styles should override the external and embedded, however if it doesn't reply with your css styling and I can probably be more helpful.
 
if u dont have the logo you need Abdobe Photoshop.. But if ur script is messed up and u want the logo to go up with top middle the script is >
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250" />
<title><?PHP echo $title; ?></title>
<link rel="stylesheet" href="<?PHP echo $layout_name; ?>/default.css" type="text/css" />
<link rel="stylesheet" href="<?PHP echo $layout_name; ?>/basic.css" type="text/css" />
<?php echo $layout_header; ?>
</head>
<body>
<div id="page">
<div id="logo-art">
<div id="logo-box">
<div id="logo"><img src="images/logo.png" width="439" height="137" /></div>
</div>
<div id="cnt-box">
<div id="cnt-container">
<div id="cnt-left">
<div id="menu">
<div id="menu-top">News</div>
<div id="menu-cnt">
<ul>
<li>
<ul>
 
Back
Top