HTML page size limit?
HTML page size limit?
I have created an html page which is 52kb. I can't seem to upload it to the html management. I haven't found anything within the forums here about a size limit. So either there is a size limit or there is some code within my page that is not allowed.
This code is within the <head> tag
and this code is is within the body where my tab content is. I have a total of 7 tabs with similar information in each tab (just listing different colors)
I am at a lose right now, after creating so many different pages and working on this particular page have left my brain drained. Maybe someone can see where my fault is (I hope). When I try to save the work, I get a page that says error html_pages.
I have used the forums here to look up a lot of information and I have learned a lot from previous posts and the tutorials. You all are great and I thank you in advance for taking the time to read over my troubles.
This code is within the <head> tag
- Code:
<style type="text/css">
#tablist{
padding: 3px 0;
margin-left: 0;
margin-bottom: 0;
margin-top: 0.1em;
font: bold 12px Verdana;
}
#tablist li{
list-style: none;
display: inline;
margin: 0;
}
#tablist li a{
padding: 3px 0.5em;
margin-left: 3px;
border: 1px solid #778;
border-bottom: none;
background: white;
}
#tablist li a:link, #tablist li a:visited{
color: navy;
}
#tablist li a.current{
background: lightyellow;
}
#tabcontentcontainer{
width: 570px;
/* Insert Optional Height definition here to give all the content a unified height */
padding: 5px;
border: 1px solid black;
}
.tabcontent{
display:none;
}
</style>
<script type="text/javascript">
var initialtab=[1, "sc1"]
function cascadedstyle(el, cssproperty, csspropertyNS){
if (el.currentStyle)
return el.currentStyle[cssproperty]
else if (window.getComputedStyle){
var elstyle=window.getComputedStyle(el, "")
return elstyle.getPropertyValue(csspropertyNS)
}
}
var previoustab=""
function expandcontent(cid, aobject){
if (document.getElementById){
highlighttab(aobject)
detectSourceindex(aobject)
if (previoustab!="")
document.getElementById(previoustab).style.display="none"
document.getElementById(cid).style.display="block"
previoustab=cid
if (aobject.blur)
aobject.blur()
return false
}
else
return true
}
function highlighttab(aobject){
if (typeof tabobjlinks=="undefined")
collecttablinks()
for (i=0; i<tabobjlinks.length; i++)
tabobjlinks[i].style.backgroundColor=initTabcolor
var themecolor=aobject.getAttribute("theme")? aobject.getAttribute("theme") : initTabpostcolor
aobject.style.backgroundColor=document.getElementById("tabcontentcontainer").style.backgroundColor=themecolor
}
function collecttablinks(){
var tabobj=document.getElementById("tablist")
tabobjlinks=tabobj.getElementsByTagName("A")
}
function detectSourceindex(aobject){
for (i=0; i<tabobjlinks.length; i++){
if (aobject==tabobjlinks[i]){
tabsourceindex=i
break
}
}
}
function do_onload(){
var cookiename=(typeof persisttype!="undefined" && persisttype=="sitewide")? "tabcontent" : window.location.pathname
var cookiecheck=window.get_cookie && get_cookie(cookiename).indexOf("|")!=-1
collecttablinks()
initTabcolor=cascadedstyle(tabobjlinks[1], "backgroundColor", "background-color")
initTabpostcolor=cascadedstyle(tabobjlinks[0], "backgroundColor", "background-color")
if (typeof enablepersistence!="undefined" && enablepersistence && cookiecheck){
var cookieparse=get_cookie(cookiename).split("|")
var whichtab=cookieparse[0]
var tabcontentid=cookieparse[1]
expandcontent(tabcontentid, tabobjlinks[whichtab])
}
else
expandcontent(initialtab[1], tabobjlinks[initialtab[0]-1])
}
if (window.addEventListener)
window.addEventListener("load", do_onload, false)
else if (window.attachEvent)
window.attachEvent("onload", do_onload)
else if (document.getElementById)
window.onload=do_onload
</script>
and this code is is within the body where my tab content is. I have a total of 7 tabs with similar information in each tab (just listing different colors)
- Code:
<ul id="tablist">
<li><a href="" class="current" onClick="return expandcontent('sc1', this)"><em>Black to White</em></a></li>
<li><a href="" class="current" onClick="return expandcontent('sc2', this)"><em>Red to Pink</em></a></li>
<li><a href="" class="current" onClick="return expandcontent('sc3', this)"><em>Purple</em></a></li>
<li><a href="" class="current" onClick="return expandcontent('sc4', this)"><em>Blue</em></a></li>
<li><a href="" class="current" onClick="return expandcontent('sc5', this)"><em>Blue to Green</em></a></li>
<li><a href="" class="current" onClick="return expandcontent('sc6', this)"><em>Green</em></a></li>
<li><a href="" class="current" onClick="return expandcontent('sc7', this)"><em>Brown</em></a></li>
</ul>
<DIV id="tabcontentcontainer">
<div id="sc1" class="tabcontent">
<table style="letter-spacing: 2pt; font-size: 80%; font-style:Arial; border=1px solid silver" summary="colors" width="100%">
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(0, 0, 0);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(0, 0, 0); color: rgb(255, 255, 255);"><strong>R0, G0, B0</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(0, 8, 0);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(0, 8, 0); color: rgb(255, 255, 255);"><strong>R0, G8, B0</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(0, 8, 16);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(0, 8, 16); color: rgb(255, 255, 255);"><strong>R0, G8, B16</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(8, 0, 0);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(8, 0, 0); color: rgb(255, 255, 255);"><strong>R8, G0, B0</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(8, 0, 8);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(8, 0, 8); color: rgb(255, 255, 255);"><strong>R8, G0, B8</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(8, 8, 8);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(8, 8, 8); color: rgb(255, 255, 255);"><strong>R8, G8, B8</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(8, 8, 16);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(8, 8, 16); color: rgb(255, 255, 255);"><strong>R8, G8, B16</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(8, 8, 24);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(8, 8, 24); color: rgb(255, 255, 255);"><strong>R8, G8, B24</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(8, 16, 8);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(8, 16, 8); color: rgb(255, 255, 255);"><strong>R8, G16, B8</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(8, 32, 40);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(8, 32, 40); color: rgb(255, 255, 255);"><strong>R8, G32, B40</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(16, 0, 40);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(16, 0, 40); color: rgb(255, 255, 255);"><strong>R16, G0, B40</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(16, 8, 0);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(16, 8, 0); color: rgb(255, 255, 255);"><strong>R16, G8, B0</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(16, 24, 16);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(16, 24, 16); color: rgb(255, 255, 255);"><strong>R16, G24, B16</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(24, 16, 16);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(24, 16, 16); color: rgb(255, 255, 255);"><strong>R24, G16, B16</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(24, 24, 40);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(24, 24, 40); color: rgb(255, 255, 255);"><strong>R24, G24, B40</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(32, 8, 32);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(32, 8, 32); color: rgb(255, 255, 255);"><strong>R32, G8, B32</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(32, 24, 0);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(32, 24, 0); color: rgb(255, 255, 255);"><strong>R32, G24, B0</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(32, 32, 32);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(32, 32, 32); color: rgb(255, 255, 255);"><strong>R32, G32, B32</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(40, 40, 40);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(40, 40, 40); color: rgb(255, 255, 255);"><strong>R40, G40, B40</strong></td>
<td style="background-color: rgb(48, 48, 48);"><span style="color: rgb(48, 48, 48);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(48, 48, 48); color: rgb(255, 255, 255);"><strong>R48, G48, B48</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(56, 56, 56);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(56, 56, 56); color: rgb(255, 255, 255);"><strong>R56, G56, B56</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(64, 64, 56);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(64, 64, 56); color: rgb(255, 255, 255);"><strong>R64, G64, B56</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(72, 72, 72);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(72, 72, 72); color: rgb(255, 255, 255);"><strong>R72, G72, B72</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(72, 72, 80);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(72, 72, 80); color: rgb(255, 255, 255);"><strong>R72, G72, B80</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(80, 80, 72);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(80, 80, 72); color: rgb(255, 255, 255);"><strong>R80, G80, B72</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(80, 80, 80);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(80, 80, 80); color: rgb(255, 255, 255);"><strong>R80, G80, B80</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(112, 104, 112);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(112, 104, 112); color: rgb(0, 0, 0);"><strong>R112, G104, B112</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(128, 120, 128);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(128, 120, 128); color: rgb(0, 0, 0);"><strong>R128, G120, B128</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(152, 152, 152);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(152, 152, 152); color: rgb(0, 0, 0);"><strong>R152, G152, B152</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(168, 168, 168);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(168, 168, 168); color: rgb(0, 0, 0);"><strong>R168, G168, B168</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(168, 168, 176);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(168, 168, 176); color: rgb(0, 0, 0);"><strong>R168, G168, B176</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(184, 184, 176);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(184, 184, 176); color: rgb(0, 0, 0);"><strong>R184, G184, B176</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(224, 224, 224);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(224, 224, 224); color: rgb(0, 0, 0);"><strong>R224, G224, B224</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(240, 240, 232);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(240, 240, 232); color: rgb(0, 0, 0);"><strong>R240, G240, B232</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(240, 240, 240);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(240, 240, 240); color: rgb(0, 0, 0);"><strong>R240, G240, B240</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(255, 255, 255);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(255, 255, 255); color: rgb(0, 0, 0);"><strong>R?, G?, B?</strong></td>
</tr>
</table>
</div>
I am at a lose right now, after creating so many different pages and working on this particular page have left my brain drained. Maybe someone can see where my fault is (I hope). When I try to save the work, I get a page that says error html_pages.
I have used the forums here to look up a lot of information and I have learned a lot from previous posts and the tutorials. You all are great and I thank you in advance for taking the time to read over my troubles.
Last edited by Linwe on June 18th 2009, 5:55 am; edited 3 times in total
Re: HTML page size limit?
Your page code (below) works > demo
- Code:
<html>
<head>
<title>Color Table</title>
<style type="text/css">
#tablist{
padding: 3px 0;
margin-left: 0;
margin-bottom: 0;
margin-top: 0.1em;
font: bold 12px Verdana;
}
#tablist li{
list-style: none;
display: inline;
margin: 0;
}
#tablist li a{
padding: 3px 0.5em;
margin-left: 3px;
border: 1px solid #778;
border-bottom: none;
background: white;
}
#tablist li a:link, #tablist li a:visited{
color: navy;
}
#tablist li a.current{
background: lightyellow;
}
#tabcontentcontainer{
width: 570px;
/* Insert Optional Height definition here to give all the content a unified height */
padding: 5px;
border: 1px solid black;
}
.tabcontent{
display:none;
}
</style>
<script type="text/javascript">
var initialtab=[1, "sc1"]
function cascadedstyle(el, cssproperty, csspropertyNS){
if (el.currentStyle)
return el.currentStyle[cssproperty]
else if (window.getComputedStyle){
var elstyle=window.getComputedStyle(el, "")
return elstyle.getPropertyValue(csspropertyNS)
}
}
var previoustab=""
function expandcontent(cid, aobject){
if (document.getElementById){
highlighttab(aobject)
detectSourceindex(aobject)
if (previoustab!="")
document.getElementById(previoustab).style.display="none"
document.getElementById(cid).style.display="block"
previoustab=cid
if (aobject.blur)
aobject.blur()
return false
}
else
return true
}
function highlighttab(aobject){
if (typeof tabobjlinks=="undefined")
collecttablinks()
for (i=0; i<tabobjlinks.length; i++)
tabobjlinks[i].style.backgroundColor=initTabcolor
var themecolor=aobject.getAttribute("theme")? aobject.getAttribute("theme") : initTabpostcolor
aobject.style.backgroundColor=document.getElementById("tabcontentcontainer").style.backgroundColor=themecolor
}
function collecttablinks(){
var tabobj=document.getElementById("tablist")
tabobjlinks=tabobj.getElementsByTagName("A")
}
function detectSourceindex(aobject){
for (i=0; i<tabobjlinks.length; i++){
if (aobject==tabobjlinks[i]){
tabsourceindex=i
break
}
}
}
function do_onload(){
var cookiename=(typeof persisttype!="undefined" && persisttype=="sitewide")? "tabcontent" : window.location.pathname
var cookiecheck=window.get_cookie && get_cookie(cookiename).indexOf("|")!=-1
collecttablinks()
initTabcolor=cascadedstyle(tabobjlinks[1], "backgroundColor", "background-color")
initTabpostcolor=cascadedstyle(tabobjlinks[0], "backgroundColor", "background-color")
if (typeof enablepersistence!="undefined" && enablepersistence && cookiecheck){
var cookieparse=get_cookie(cookiename).split("|")
var whichtab=cookieparse[0]
var tabcontentid=cookieparse[1]
expandcontent(tabcontentid, tabobjlinks[whichtab])
}
else
expandcontent(initialtab[1], tabobjlinks[initialtab[0]-1])
}
if (window.addEventListener)
window.addEventListener("load", do_onload, false)
else if (window.attachEvent)
window.attachEvent("onload", do_onload)
else if (document.getElementById)
window.onload=do_onload
</script>
</head>
<br>
<body bgcolor="#ffffff">
<center>
<ul id="tablist">
<li><a href="" class="current" onClick="return expandcontent('sc1', this)"><em>Black to White</em></a></li>
<li><a href="" class="current" onClick="return expandcontent('sc2', this)"><em>Red to Pink</em></a></li>
<li><a href="" class="current" onClick="return expandcontent('sc3', this)"><em>Purple</em></a></li>
<li><a href="" class="current" onClick="return expandcontent('sc4', this)"><em>Blue</em></a></li>
<li><a href="" class="current" onClick="return expandcontent('sc5', this)"><em>Blue to Green</em></a></li>
<li><a href="" class="current" onClick="return expandcontent('sc6', this)"><em>Green</em></a></li>
<li><a href="" class="current" onClick="return expandcontent('sc7', this)"><em>Brown</em></a></li>
</ul>
<DIV id="tabcontentcontainer">
<div id="sc1" class="tabcontent">
<table style="letter-spacing: 2pt; font-size: 80%; font-style:Arial; border=1px solid silver" summary="colors" width="100%">
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(0, 0, 0);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(0, 0, 0); color: rgb(255, 255, 255);"><strong>R0, G0, B0</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(0, 8, 0);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(0, 8, 0); color: rgb(255, 255, 255);"><strong>R0, G8, B0</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(0, 8, 16);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(0, 8, 16); color: rgb(255, 255, 255);"><strong>R0, G8, B16</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(8, 0, 0);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(8, 0, 0); color: rgb(255, 255, 255);"><strong>R8, G0, B0</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(8, 0, 8);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(8, 0, 8); color: rgb(255, 255, 255);"><strong>R8, G0, B8</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(8, 8, 8);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(8, 8, 8); color: rgb(255, 255, 255);"><strong>R8, G8, B8</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(8, 8, 16);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(8, 8, 16); color: rgb(255, 255, 255);"><strong>R8, G8, B16</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(8, 8, 24);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(8, 8, 24); color: rgb(255, 255, 255);"><strong>R8, G8, B24</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(8, 16, 8);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(8, 16, 8); color: rgb(255, 255, 255);"><strong>R8, G16, B8</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(8, 32, 40);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(8, 32, 40); color: rgb(255, 255, 255);"><strong>R8, G32, B40</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(16, 0, 40);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(16, 0, 40); color: rgb(255, 255, 255);"><strong>R16, G0, B40</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(16, 8, 0);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(16, 8, 0); color: rgb(255, 255, 255);"><strong>R16, G8, B0</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(16, 24, 16);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(16, 24, 16); color: rgb(255, 255, 255);"><strong>R16, G24, B16</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(24, 16, 16);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(24, 16, 16); color: rgb(255, 255, 255);"><strong>R24, G16, B16</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(24, 24, 40);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(24, 24, 40); color: rgb(255, 255, 255);"><strong>R24, G24, B40</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(32, 8, 32);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(32, 8, 32); color: rgb(255, 255, 255);"><strong>R32, G8, B32</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(32, 24, 0);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(32, 24, 0); color: rgb(255, 255, 255);"><strong>R32, G24, B0</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(32, 32, 32);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(32, 32, 32); color: rgb(255, 255, 255);"><strong>R32, G32, B32</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(40, 40, 40);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(40, 40, 40); color: rgb(255, 255, 255);"><strong>R40, G40, B40</strong></td>
<td style="background-color: rgb(48, 48, 48);"><span style="color: rgb(48, 48, 48);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(48, 48, 48); color: rgb(255, 255, 255);"><strong>R48, G48, B48</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(56, 56, 56);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(56, 56, 56); color: rgb(255, 255, 255);"><strong>R56, G56, B56</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(64, 64, 56);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(64, 64, 56); color: rgb(255, 255, 255);"><strong>R64, G64, B56</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(72, 72, 72);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(72, 72, 72); color: rgb(255, 255, 255);"><strong>R72, G72, B72</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(72, 72, 80);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(72, 72, 80); color: rgb(255, 255, 255);"><strong>R72, G72, B80</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(80, 80, 72);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(80, 80, 72); color: rgb(255, 255, 255);"><strong>R80, G80, B72</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(80, 80, 80);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(80, 80, 80); color: rgb(255, 255, 255);"><strong>R80, G80, B80</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(112, 104, 112);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(112, 104, 112); color: rgb(0, 0, 0);"><strong>R112, G104, B112</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(128, 120, 128);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(128, 120, 128); color: rgb(0, 0, 0);"><strong>R128, G120, B128</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(152, 152, 152);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(152, 152, 152); color: rgb(0, 0, 0);"><strong>R152, G152, B152</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(168, 168, 168);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(168, 168, 168); color: rgb(0, 0, 0);"><strong>R168, G168, B168</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(168, 168, 176);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(168, 168, 176); color: rgb(0, 0, 0);"><strong>R168, G168, B176</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(184, 184, 176);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(184, 184, 176); color: rgb(0, 0, 0);"><strong>R184, G184, B176</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(224, 224, 224);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(224, 224, 224); color: rgb(0, 0, 0);"><strong>R224, G224, B224</strong></td>
</tr>
<tr>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(240, 240, 232);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(240, 240, 232); color: rgb(0, 0, 0);"><strong>R240, G240, B232</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(240, 240, 240);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(240, 240, 240); color: rgb(0, 0, 0);"><strong>R240, G240, B240</strong></td>
<td style="background-color: rgb(0, 0, 0);"><span style="color: rgb(255, 255, 255);"><br />
¦ ¦ ¦<br /></span></td>
<td style="background-color: rgb(255, 255, 255); color: rgb(0, 0, 0);"><strong>R?, G?, B?</strong></td>
</tr>
</table>
</div>
</center>
</body>
</html>
Re: HTML page size limit?
That's a relief, thanks for testing the code RoNo.
However I still couldn't load the entire page. I'm guessing it's because there is a size limit per page, is 52 kb to big?
I figured out a way around it though. I put my tab content table on another page (total of 41 kb) and in my main page I added my tab content table in an iframe. That reduced the size of my main page down to 13 kb. The tab content table works perfectly fine that way. The only difference in the way the table looks is now it's in a "box". I am fine with that.
Thank you again RoNo for confirming that my script wasn't the problem.
I hope my "work around" will help anyone else that has a similar problem.
I am still having trouble loading some pages...it can't be the size because this next page it only 15kb. I have a page just like it same codes just different text and it worked fine. I guess I'll try again later, it is frustrating though to try and save a page and you get an "Error Pages_html" page.
However I still couldn't load the entire page. I'm guessing it's because there is a size limit per page, is 52 kb to big?
I figured out a way around it though. I put my tab content table on another page (total of 41 kb) and in my main page I added my tab content table in an iframe. That reduced the size of my main page down to 13 kb. The tab content table works perfectly fine that way. The only difference in the way the table looks is now it's in a "box". I am fine with that.
Thank you again RoNo for confirming that my script wasn't the problem.
I hope my "work around" will help anyone else that has a similar problem.
I am still having trouble loading some pages...it can't be the size because this next page it only 15kb. I have a page just like it same codes just different text and it worked fine. I guess I'll try again later, it is frustrating though to try and save a page and you get an "Error Pages_html" page.
Re: HTML page size limit?
Does anyone know why I get the error page?
It can't be the size or the scripting I use. I currently have 13 pages and need to add two more but I keep getting the Error Pages_HTML.
I'm at a loss and frustrated.
It can't be the size or the scripting I use. I currently have 13 pages and need to add two more but I keep getting the Error Pages_HTML.
I'm at a loss and frustrated.
Re: HTML page size limit?
Ah, I think it won't work for you because it is too big. I have had this problem before.
Walshy95- Active Poster
-
Posts : 1308
Reputation : 6
Language : English
Location : UK, Liverpool
Re: HTML page size limit?
Yeah I figured the size was an issue, but I reduced the size to under 15kb and it still won't work.
Re: HTML page size limit?
There is some limits for HTML Pages.
HTML Pages: 127 pges
Characters in HMTL pages: 65 000 characters
MrMario- Helper
-
Posts : 22186
Reputation : 1839
Language : test
Re: HTML page size limit?
ahhh I see. I'm going to have to check on that.
I couldn't find that info by my search, I guess I searched with the wrong query. Thank you for pointing that out MrMario.
Edit:
page one character count with spaces = 10,527
page two character count with spaces = 12,500 (strange how ummm clean that count is)
Anyway, I started doing a count of the pages I already have loaded, and I didn't even get through all of them maybe 4 or 5 and the character count with and without spaces well exceded that 65,000 limit. So my guess is, it's per page and neither one of my pages comes close to 65,000.
Second edit: after realizing it wasn't my character count and being armed with proper search query I have found a similar problem and solution...the word "buy". Whyyyyy in the world is that little 3 letter word cause such a headache. My pages load at last.
I couldn't find that info by my search, I guess I searched with the wrong query. Thank you for pointing that out MrMario.
Edit:
page one character count with spaces = 10,527
page two character count with spaces = 12,500 (strange how ummm clean that count is)
Anyway, I started doing a count of the pages I already have loaded, and I didn't even get through all of them maybe 4 or 5 and the character count with and without spaces well exceded that 65,000 limit. So my guess is, it's per page and neither one of my pages comes close to 65,000.
Second edit: after realizing it wasn't my character count and being armed with proper search query I have found a similar problem and solution...the word "buy". Whyyyyy in the world is that little 3 letter word cause such a headache. My pages load at last.
Last edited by Linwe on June 18th 2009, 5:55 am; edited 2 times in total (Reason for editing : updated my findings)
Re: HTML page size limit?
As this problem appears to be resolved, I will lock this topic now.
=> Locked
=> Locked
Nessa- Energetic
-
Posts : 6203
Reputation : 128
Language : English
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum