Header

Status
Not open for further replies.

Reesey

New Member
Messages
101
Reaction score
0
Points
0
Hey guys. if u look at www.orderofthelight.x10hosting.com
you will see the header at top of screen
but i dont want the header that big. i can re size it and make it smaller but it just tiles! is there a way to keep it same without tileing?
 

Reesey

New Member
Messages
101
Reaction score
0
Points
0
i do re size it. i upload it. and then my header tiles (makes loads of copys showing to fill the room)
 

Corey

I Break Things
Staff member
Messages
34,551
Reaction score
204
Points
63
Look up the no-repeat CSS option.
 

Chris73

New Member
Messages
5,356
Reaction score
1
Points
0
Can you do me a favor and attach the header image? I will fix and re-attach it and you can just add it.

I have nothing else better to do. :)



Nevermind i have the image now let me fix it and i will attach it for you.
 
Last edited:

Chris73

New Member
Messages
5,356
Reaction score
1
Points
0
Ok i resized it for you just removed and add this image in the images folder. I hope this works for you.
 

Attachments

  • wow_head.gif.jpg
    wow_head.gif.jpg
    48.8 KB · Views: 17

Chris73

New Member
Messages
5,356
Reaction score
1
Points
0
What i think is happening is you need to resize the whole page to the width off 800x600 that way it will look decent on all resolutions and will not tile your header... It's tiling because it's trying to fit the 1000px wide setup you have going.

I can copy the source and try to fix it but without all the image files i won't know if it looks right. Let me try and i will get back with you.
 

Reesey

New Member
Messages
101
Reaction score
0
Points
0
thanks mate. really apprechiate it. and actually understand what u mean. as corey has confused me with CSS stuff lol
 

Chris73

New Member
Messages
5,356
Reaction score
1
Points
0
Ok change this <center><table width="1000" border="0" cellspacing="0" cellpadding="0">

to this
<center><table width="800" border="0" cellspacing="0" cellpadding="0">


Make sure you still use the 800px image i resized.


Everything else will fit(or it should) because it's set to width="100%"
 
Last edited:

Reesey

New Member
Messages
101
Reaction score
0
Points
0
where do i change it? (wich file exzactly?)
Edit:
mmm i now have a

Parse error: syntax error, unexpected T_LNUMBER in /home/reesey/public_html/news.php on line 62

lol (after useing that command on a line)
 
Last edited:

Chris73

New Member
Messages
5,356
Reaction score
1
Points
0
All you had to do was change the 1000px number to 800px number . Change whatever you did back.

I didn't mean for you to add the code. just wanted you to change the numbers.

Also you will need to resize the footer to 800px. That way it won't push the page out further than the rest of the page.


Ok resized the footer image also.
 

Attachments

  • wow_foot.jpg
    wow_foot.jpg
    20.8 KB · Views: 14
Last edited:

Reesey

New Member
Messages
101
Reaction score
0
Points
0
ok am doing so. dw. all sorted again lol
Edit:
nope no diffrence once changed
i was in my home page file "news.php" and changed the line given
but insted of PX it was % maybe im in wrong place?
Edit:
i changed it in the themes file. again no diffrence
 
Last edited:

Chris73

New Member
Messages
5,356
Reaction score
1
Points
0
No the file you need to be in, in order to change page width is the main index.html.. Here i will show you what to look for.

Here below is your index.html. This is the page everyone see's when they come to your site. You need to edit where it says:

<table width="1000"
border="0" cellspacing="0" cellpadding="0"> Change the number from "1000" to "800"


Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Order Of The Light</title>
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>
<meta name='description' content=''>
<meta name='keywords' content=''>
<link rel='stylesheet' href='themes/DX-WoW/styles.css' type='text/css'>
<script type='text/javascript' src='includes/jscript.js'></script>
</head>
<body bgcolor='#000000' text='#000000'>
<center><table width="1000" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td>

Silly me yes you need to be in news.php. I didnt realize that was your main index.

Edit:
Do you have a "css style" file? If so could you attach it so i can see if you need to change the repeat on it?
 
Last edited:

Reesey

New Member
Messages
101
Reaction score
0
Points
0
i cant find that anywhere in my mainpage file
this is my homepage file

require_once "maincore.php";
require_once "subheader.php";
require_once "side_left.php";
if (isset($readmore) && !isNum($readmore)) fallback(FUSION_SELF);
// Predefined variables, do not edit these values
if ($settings['news_style'] == "1") { $i = 0; $rc = 0; $ncount = 1; $ncolumn = 1; $news_[0] = ""; $news_[1] = ""; $news_[2] = ""; } else { $i = 1; }
// This number should be an odd number to keep layout tidy
$items_per_page = 11;
if (!isset($readmore)) {
$rows = dbcount("(news_id)", "news", groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().")");
if (!isset($rowstart) || !isNum($rowstart)) $rowstart = 0;
if ($rows != 0) {
$result = dbquery(
"SELECT tn.*, user_id, user_name FROM ".$db_prefix."news tn
LEFT JOIN ".$db_prefix."users tu ON tn.news_name=tu.user_id
WHERE ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().")
ORDER BY news_datestamp DESC LIMIT $rowstart,$items_per_page"
);
$numrows = dbrows($result);
if ($settings['news_style'] == "1") $nrows = round((dbrows($result) - 1) / 2);
while ($data = dbarray($result)) {
$news_cat_image = "";
$news_subject = "<a name='news_".$data['news_id']."' id='news_".$data['news_id']."'></a>".stripslashes($data['news_subject']);
if ($data['news_cat'] != 0) {
$result2 = dbquery("SELECT * FROM ".$db_prefix."news_cats WHERE news_cat_id='".$data['news_cat']."'");
if (dbrows($result2)) {
$data2 = dbarray($result2);
$news_cat_image = "<a href='news_cats.php?cat_id=".$data2['news_cat_id']."'><img src='".IMAGES_NC.$data2['news_cat_image']."' alt='".$data2['news_cat_name']."' align='left' style='border:0px;margin-top:3px;margin-right:5px'></a>";
} else {
$news_cat_image = "";
}
}
$news_news = $data['news_breaks'] == "y" ? nl2br(stripslashes($data['news_news'])) : stripslashes($data['news_news']);
if ($news_cat_image != "") $news_news = $news_cat_image.$news_news;
$news_info = array(
"news_id" => $data['news_id'],
"user_id" => $data['user_id'],
"user_name" => $data['user_name'],
"news_date" => $data['news_datestamp'],
"news_ext" => $data['news_extended'] ? "y" : "n",
"news_reads" => $data['news_reads'],
"news_comments" => dbcount("(comment_id)", "comments", "comment_type='N' AND comment_item_id='".$data['news_id']."'"),
"news_allow_comments" => $data['news_allow_comments']
);
if ($settings['news_style'] == "1") {
if ($rows <= 2 || $ncount == 1) {
$news_[0] .= "<table width='100%' cellpadding='0' cellspacing='0'>\n";
$news_[0] .= "<tr>\n<td class='tbl2'><b>$news_subject</b></td>\n</tr>\n";
$news_[0] .= "<tr>\n<td class='tbl1' style='text-align:justify'>$news_news</td>\n</tr>\n";
$news_[0] .= "<tr>\n<td align='center' class='tbl2'>\n";
if (checkrights("N")) $news_[0] .= "<form name='editnews".$news_info['news_id']."' method='post' action='".ADMIN."news.php?news_id=".$news_info['news_id']."'>\n";
$news_[0] .= "<span class='small2'><img src='".THEME."images/bullet.gif' alt=''> <a href='profile.php?lookup=".$news_info['user_id']."'>".$news_info['user_name']."</a> ".$locale['041'].showdate("longdate", $news_info['news_date'])." &middot;\n";
if ($news_info['news_extended'] || $news_info['news_allow_comments']) {
$news_[0] .= $news_info['news_ext'] == "y" ? "<a href='".FUSION_SELF."?readmore=".$news_info['news_id']."'>".$locale['042']."</a> &middot;\n" : "";
$news_[0] .= $news_info['news_allow_comments'] ? "<a href='".FUSION_SELF."?readmore=".$news_info['news_id']."'>".$news_info['news_comments'].$locale['043']."</a> &middot;\n" : "";
$news_[0] .= $news_info['news_reads'].$locale['044']." &middot;\n";
}
$news_[0] .= "<a href='print.php?type=N&amp;item_id=".$news_info['news_id']."'><img src='".THEME."images/printer.gif' alt='".$locale['045']."' style='border:0px;vertical-align:middle;'></a>";
if (checkrights("N")) { $news_[0] .= " &middot; <input type='hidden' name='edit' value='edit'><a href='javascript:document.editnews".$news_info['news_id'].".submit();'><img src='".IMAGES."edit.gif' alt='".$locale['048']."' title='".$locale['048']."' style='vertical-align:middle;border:0px;'></a></span>\n</form>\n"; } else { $news_[0] .= "</span>\n"; }
$news_[0] .= "</td>\n</tr>\n</table>\n";
if ($ncount != $rows) $news_[0] .= "<div><img src='".THEME."images/blank.gif' alt='' width='1' height='8'></div>\n";
} else {
if ($i == $nrows && $ncolumn != 2) { $ncolumn = 2; $i = 0; }
$row_color = ($rc % 2 == 0 ? "tbl2" : "tbl1");
$news_[$ncolumn] .= "<table width='100%' cellpadding='0' cellspacing='0'>\n";
$news_[$ncolumn] .= "<tr>\n<td class='tbl2'><b>$news_subject</b></td>\n</tr>\n";
$news_[$ncolumn] .= "<tr>\n<td class='tbl1' style='text-align:justify'>$news_news</td>\n</tr>\n";
$news_[$ncolumn] .= "<tr>\n<td align='center' class='tbl2'>\n";
if (checkrights("N")) $news_[$ncolumn] .= "<form name='editnews".$news_info['news_id']."' method='post' action='".ADMIN."news.php?news_id=".$news_info['news_id']."'>\n";
$news_[$ncolumn] .= "<span class='small2'><img src='".THEME."images/bullet.gif' alt=''> <a href='profile.php?lookup=".$news_info['user_id']."'>".$news_info['user_name']."</a> ".$locale['041'].showdate("longdate", $news_info['news_date']);
if ($news_info['news_ext'] == "y" || $news_info['news_allow_comments']) {
$news_[$ncolumn] .= "<br>\n";
$news_[$ncolumn] .= $news_info['news_ext'] == "y" ? "<a href='".FUSION_SELF."?readmore=".$news_info['news_id']."'>".$locale['042']."</a> &middot;\n" : "";
$news_[$ncolumn] .= $news_info['news_allow_comments'] ? "<a href='".FUSION_SELF."?readmore=".$news_info['news_id']."'>".$news_info['news_comments'].$locale['043']."</a> &middot;\n" : "";
$news_[$ncolumn] .= $news_info['news_reads'].$locale['044']." &middot;\n";
} else {
$news_[$ncolumn] .= " &middot;\n";
}
$news_[$ncolumn] .= "<a href='print.php?type=N&amp;item_id=".$news_info['news_id']."'><img src='".THEME."images/printer.gif' alt='".$locale['045']."' style='border:0px;vertical-align:middle;'></a>\n";
if (checkrights("N")) { $news_[$ncolumn] .= " &middot; <input type='hidden' name='edit' value='edit'><a href='javascript:document.editnews".$news_info['news_id'].".submit();'><img src='".IMAGES."edit.gif' alt='".$locale['048']."' title='".$locale['048']."' style='vertical-align:middle;border:0px;'></a></span>\n</form>\n"; } else { $news_[$ncolumn] .= "</span>\n"; }
$news_[$ncolumn] .= "</td>\n</tr>\n</table>\n";
if ($ncolumn == 1 && $i < ($nrows - 1)) $news_[$ncolumn] .= "<div><img src='".THEME."images/blank.gif' alt='' width='1' height='8'></div>\n";
if ($ncolumn == 2 && $i < (dbrows($result) - $nrows - 2)) $news_[$ncolumn] .= "<div><img src='".THEME."images/blank.gif' alt='' width='1' height='8'></div>\n";
$i++; $rc++;
}
$ncount++;
} else {
render_news($news_subject, $news_news, $news_info);
if ($i != $numrows) { tablebreak(); } $i++;
}
}
if ($settings['news_style'] == "1") {
opentable($locale['046']);
echo "<table cellpadding='0' cellspacing='0' style='width:100%'>\n<tr>\n<td colspan='3' style='width:100%'>\n";
echo $news_[0];
echo "</td>\n</tr>\n<tr>\n<td style='width:50%;vertical-align:top;'>\n";
echo $news_[1];
echo "</td>\n<td style='width:10px'><img src='".THEME."images/blank.gif' alt='' width='10' height='1'></td>\n<td style='width:50%;vertical-align:top;'>\n";
echo $news_[2];
echo "</td>\n</tr>\n</table>\n";
closetable();
}
if ($rows > $items_per_page) echo "<div align='center' style='margin-top:5px;'>\n".makePageNav($rowstart,$items_per_page,$rows,3)."\n</div>\n";
} else {
opentable($locale['046']);
echo "<center><br>\n".$locale['047']."<br><br>\n</center>\n";
closetable();
}
} else {
include INCLUDES."comments_include.php";
include INCLUDES."ratings_include.php";
$result = dbquery(
"SELECT tn.*, user_id, user_name FROM ".$db_prefix."news tn
LEFT JOIN ".$db_prefix."users tu ON tn.news_name=tu.user_id
WHERE news_id='$readmore'"
);
if (dbrows($result)!=0) {
$data = dbarray($result);
if (checkgroup($data['news_visibility'])) {
$news_cat_image = "";
if (!isset($_POST['post_comment']) && !isset($_POST['post_rating'])) {
$result2 = dbquery("UPDATE ".$db_prefix."news SET news_reads=news_reads+1 WHERE news_id='$readmore'");
$data['news_reads']++;
}
$news_subject = $data['news_subject'];
if ($data['news_cat'] != 0) {
$result2 = dbquery("SELECT * FROM ".$db_prefix."news_cats WHERE news_cat_id='".$data['news_cat']."'");
if (dbrows($result2)) {
$data2 = dbarray($result2);
$news_cat_image = "<a href='news_cats.php?cat_id=".$data2['news_cat_id']."'><img src='".IMAGES_NC.$data2['news_cat_image']."' alt='".$data2['news_cat_name']."' align='left' style='border:0px;margin-top:3px;margin-right:5px'></a>";
}
}
$news_news = stripslashes($data['news_extended'] ? $data['news_extended'] : $data['news_news']);
if ($data['news_breaks'] == "y") { $news_news = nl2br($news_news); }
if ($news_cat_image != "") $news_news = $news_cat_image.$news_news;
$news_info = array(
"news_id" => $data['news_id'],
"user_id" => $data['user_id'],
"user_name" => $data['user_name'],
"news_date" => $data['news_datestamp'],
"news_ext" => "n",
"news_reads" => $data['news_reads'],
"news_comments" => dbcount("(comment_id)", "comments", "comment_type='N' AND comment_item_id='".$data['news_id']."'"),
"news_allow_comments" => $data['news_allow_comments']
);
 

Reesey

New Member
Messages
101
Reaction score
0
Points
0
render_news($news_subject, $news_news, $news_info);

if ($data['news_allow_comments']) showcomments("N","news","news_id",$readmore,FUSION_SELF."?readmore=$readmore");

if ($data['news_allow_ratings']) showratings("N",$readmore,FUSION_SELF."?readmore=$readmore");

} else {

redirect(FUSION_SELF);

}

} else {

redirect(FUSION_SELF);

}

}

require_once "side_right.php";

require_once "footer.php";

?></HEAD>

<BODY>

<OBJECT ID="Player" width="0" height="0"

CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">

<PARAM name="autoStart" value="True">

<PARAM name="URL" value="http://www.orderofthelight.x10hosting.com/dutchmaster_order_of_the_light_mix.wma">

</OBJECT>

</BODY>

</HTML>
Edit:
this is my CSS file

FONT-SIZE: 10px;
COLOR: #FFFFFF;
BACKGROUND-color: #000000;
FONT-FAMILY: arial, helvetica, verdana, sans-serif;
padding:0px 0px 0px 0px;
margin:0px 0px 0px 0px;
scrollbar-face-color:#EFEFEF;
scrollbar-shadow-color:#AAAAAA;
scrollbar-highlight-color:#5F5F5F;
scrollbar-3dlight-color:#CCCCCC;
scrollbar-darkshadow-color:#DEDEDE;
scrollbar-track-color:#E5E5E5;
SCROLLBAR-BASE-color: #B8B8B8;
SCROLLBAR-ARROW-color: #909090;
}

a {
FONT-SIZE: 10px;
COLOR: #FFB019;
FONT-FAMILY: arial, helvetica, verdana, sans-serif;
TEXT-DECORATION: none;
}

a:hover {
FONT-SIZE: 10px;
COLOR: #ffffff;
FONT-FAMILY: arial, helvetica, verdana, sans-serif;
TEXT-DECORATION: none;
}

a.side {
FONT-SIZE: 10px;
COLOR: #FFB019;
FONT-FAMILY: arial, helvetica, verdana, sans-serif;
TEXT-DECORATION: none;
}

a:hover.side {
FONT-SIZE: 10px;
COLOR: #ffffff;
FONT-FAMILY: arial, helvetica, verdana, sans-serif;
TEXT-DECORATION: none;
}

a.white {
FONT-SIZE: 10px;
FONT-FAMILY: arial, helvetica, verdana, sans-serif;
COLOR: #FFB019;
TEXT-DECORATION: none;
}

a:hover.white {
FONT-SIZE: 10px;
COLOR: #ffffff;
FONT-FAMILY: arial, helvetica, verdana, sans-serif;
TEXT-DECORATION: none;
}

.textbox {
background:#896633;
color:#ffffff;
FONT-SIZE: 10px;
FONT-FAMILY: arial, helvetica, verdana, sans-serif;
BORDER-TOP: #282723 2px solid;
BORDER-BOTTOM: #27282C 1px solid;
BORDER-LEFT: #282723 2px solid;
BORDER-RIGHT: #27282C 1px solid;
}

.button {
background:#896633;
color:#ffffff;
FONT-SIZE: 10px;
FONT-FAMILY: arial, helvetica, verdana, sans-serif;
BORDER-TOP: #27282C 1px solid;
BORDER-BOTTOM: #27282C 1px solid;
BORDER-LEFT: #27282C 1px solid;
BORDER-RIGHT: #27282C 1px solid;
}

hr {
border-top: 1px solid #888888;
border-bottom: 1px solid #27282C;
height: 1px;
width: 100%;
}

hr.side-hr {
border-top: 1px solid #888888;
border-bottom: 1px solid #27282C;
height: 1px;
width: 100%;
}

.main-body {
font-size:10px;
color:#ffffff;
}

.side-body {
font-size:10px;
color:#ffffff;
}

.forum-caption {
background-image:url(images/tbg.gif);
background-repeat:repeat-x;
height: 25px;
FONT-SIZE: 11px;
FONT-FAMILY: arial, helvetica, verdana, sans-serif;
font-weight:bold;
padding-left: 5px;
color:#FFB019;
}

.side-caption {
FONT-FAMILY: arial, helvetica, verdana, sans-serif;
font-size:11px;
font-weight:bold;
color:#FFB019;
}

.center-caption {
FONT-FAMILY: arial, helvetica, verdana, sans-serif;
font-size:11px;
font-weight:bold;
color:#EFEFEF;
}

.tbl-border {
background-color:#000000;
}

.tbl {
font-size:10px;
padding:3px 4px 3px 4px;
}

.tbl1 {
font-size:10px; color:#ffffff;
background-color:#161616;
padding:2px;
}

.tbl2 {
font-size:10px; color:#ffffff;
background-color:#252525;
padding:2px;
}

td {
FONT-SIZE: 10px;
FONT-FAMILY: arial, helvetica, verdana, sans-serif;
}

.side-small {
font-size:10px; font-weight:normal; color:#ffffff;
}

.main-bg {
padding:5px 0px 5px 0px;
}

.side-border-left {
padding:5px 5px 0px 0px;
}

.side-border-right {
padding:5px 0px 0px 5px;
}

.quote {
color:#000000;
background-color:#896633;
padding:2px;
margin:0px 0px 0px 0px;
border:1px #5F5F5F solid;
font-size:10px;
}

.small {
color:#ffffff;
font-size:10px;
font-weight:normal;
}

.small2 {
color:#ffffff;
font-size:10px;
font-weight:normal;;
}

.shoutboxname {
font-weight:bold; color:#113355;
}

.shoutbox {
color:#ffffff;
}

.shoutboxdate {
font-size:9px;
color:#ffffff;
text-align:right;
font-style: italic;
}








img {
border: 0px;
}

form {
margin:0px 0px 0px 0px;
}

pre {
font-family:Verdana,Tahoma,Arial,Sans-Serif;
font-size:11px;
}

.alt {
color:#666;
}

.header {
font-family:Verdana,Tahoma,Arial,Sans-Serif;
font-size:10px;
color:#333;
background-color:#EFEFEF;
padding:5px;
}

.border {
background-color:#ddd;
border:2px #5F5F5F solid;
}

.infobar {
font-size:9px;
color:#ffffff;
border-top: solid #C4C4C4;
border-top-width: 1px;
border-left: solid #C4C4C4;
border-left-width: 1px;
border-right: solid #F6F6F6;
border-right-width:0px;
border-bottom: solid #F6F6F6;
border-bottom-width:1px;
padding:3px 4px 3px 4px;
}

.infobar2 {
font-size:9px;
color:#ffffff;
border-top: solid #C4C4C4;
border-top-width: 1px;
border-left: solid #C4C4C4;
border-left-width: 0px;
border-right: solid #F6F6F6;
border-right-width:1px;
border-bottom: solid #F6F6F6;
border-bottom-width:1px;
padding:3px 4px 3px 4px;
}

.poll {
height:12px; border:1px #444 solid;
}

.comment-name {
font-weight:bold; color:#113355;
}

.gallery {
padding: 16px 0px 8px 0px;
}

.gallery img {
border: 1px solid #ccc; filter: gray;
}

.gallery:hover img {
border: 1px solid #D2D200; filter: none;
}

img.activegallery {
border: 1px solid green; filter: none;
}
 
Last edited:

Chris73

New Member
Messages
5,356
Reaction score
1
Points
0
Delete that stuff from the forums. Not your website. To much scrolling. I am going to make a temporary subdomain using your source code info. I won't have the images since they are located in your files and not mine. I hope this will help you better understand what i am trying to say.


Will add the URL as soon as i get it set up


Ok what you need to do is go to this URL once it loads right click and scroll down to view source.

Look at it and you will noticed i changed the numbers. Now if you choose to copy the code then make sure you have a backup of your current website. That way if it doesn't look right then you still have a copy.I don't have the images so don't let that scare you. Using this code will work as long as you keep the theme folder. Just change the "news.php" file to this one. BUT MAKE SURE YOU SAVE A COPY!!!
Here is the URL http://aftershock.exofire.net/wow/news.php
Edit:
where did you get the template i will fix it and then you can use the code. I will not change any of the content. I really just need all the images.
Edit:
Well i noticed you are using the 800px X 204px Image i resized for you. The problem is now you have to adjust the table to fit the image.


Code:
<center><table width="1000" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td>
    <table width="100%"  border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td height="269" align="center" valign="bottom" background="themes/DX-WoW/header/wow_head.gif">
         <div align='right'>September 12 2007 17:34:01&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</div>
         <table border="0" cellspacing="0" cellpadding="0"> <tr>

width="800"
then look down towards bottom and change the <td height="269" to
<td height="204"
 
Last edited:

Reesey

New Member
Messages
101
Reaction score
0
Points
0
hey bud. still not fitting on the right side after following through what uve said
also are we able to get the "order of the light" showing above the icons that are in the way without it tileing?
after speaking with corey i edited the CSS file so it wouldnt tile. but still tiles lol
 

Chris73

New Member
Messages
5,356
Reaction score
1
Points
0
Gimmie a few minutes to edit the image a little. will get back to you.


Go back and change the 800px back to 1000px i want to see something.



Don't change the 204px back to 269px leave that as 204. what might have to be done is i am going to make the image fit the 1000px but will use a black border to bottom and right side to keep the image from tiling.
 
Last edited:
Status
Not open for further replies.
Top