Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

My home page and sidebar content is cut off WordPress

  • SOLVED

My bio page content was cut off and I got this code to clear my content

.content { clear:both; overflow:hidden; padding:0px 0px 0px 0px;} and it worked.

However, it made my home page & sidebar content cut off. What happened?


http://www.hawriandmandy.com/

Answers (6)

2011-04-12

Sébastien | French WordpressDesigner answers:

.content { clear:both; overflow:hidden; padding:0px 0px 0px 0px;height:auto}


ddoodnath comments:

it did not work :(


Sébastien | French WordpressDesigner comments:

simply, you have 68 <div> but 69 </div> !


ddoodnath comments:

what should I do then?


Sébastien | French WordpressDesigner comments:

you must find the </div> that you must remove
if you want i search it but i need 10 minutes
ok ?


Sébastien | French WordpressDesigner comments:

no, sorry, that's an ugly job, your code is so bad... sorry


ddoodnath comments:

lol...oh man well how much would it cost to fix?

2011-04-12

Victor Teixeira answers:

remove overflow:hidden; from .main-bgr


ddoodnath comments:

hey that worked...but but footer doesn't show up now?

http://www.hawriandmandy.com/


Victor Teixeira comments:

You have lots of inline css that you'll gave to remove for your site to work correctly.

You must remove all 'position: absolute' from your php files.

2011-04-12

AdamGold answers:

Find (I guess it's in index, or header):
<div class="main">

Replace with:
<div class="main" style="height: auto">


AdamGold comments:

Or try to replace this in your CSS:
.main {}

With:
.main { height: auto }


ddoodnath comments:

its in the header.php, but it didn't work :(


AdamGold comments:

None of the solutions? Try putting this in your javascript section:
jQuery(document).ready( function() {
jQuery('#main').css('height', 'auto');
});


AdamGold comments:

Sorry, it should be:
jQuery(document).ready( function() {
jQuery('.main').css('height', 'auto');
});


ddoodnath comments:

I'm not sure where to find this....is this part of the style sheet?

/*
Theme Name: WordPress Theme 974
Theme URI: http://template-help.com/
Description: A theme from Template-Help.com Collection
Version: 2.8
Author: Template_Help.com
Author URL: http://www.Template-Help.com/
*/

* { padding:0; margin:0;}

html { font-size:100.01%; }

body {background: black;
background-attachment:fixed;overflow:scroll; font-size:62.5%; font-family: Verdana, Helvetica, sans-serif; color:#ffffff;}
.clear { clear: both;}

table, td, div, img { border:0; border-collapse:collapse;}
td {vertical-align:top;}
ul { list-style: none;}
p { padding:0px 0px 18px 0px;}

a {text-decoration: underline; color:#00ff66; outline:none;}
a:hover {text-decoration: none;}

input, select, textarea, html body textarea { vertical-align:middle; font-size:12px; color:#000; font-family:Arial;}
input.text, select, textarea { padding:2px 0px 3px 6px; border:1px solid #2e2e2e; background:#fff;}

/*** Main ***/
.tail-left {
float:left;
position:absolute;top:0; left:0;
width:50%; height:132px;
background:none;}

.tail-right {
float:right;
position:absolute; top:0; right:-68px;
width:68px; height:39px;
background:none;}

.main { width:expression(((document.documentElement.clientWidth || document.body.clientWidth) < 1050)? "1050px" : "100%"); min-width:1050px;}

.main { height: auto }

.main-bgr {height:100%;}

.main-width { width:1073px; margin:0 auto; position:relative;}

.header { height:132px; background:none;overflow:hidden;}

.commenthidden {display:none}
.commentshown {display:inline}

/*** Menu ***/
.menu { float:left; margin-left:-28px; padding:0px 0px 10px 0px; overflow:hidden; position:absolute; top:10px; width:1160px;}

.menu ul { float:left; list-style:none; overflow:hidden;}
.menu ul li { float:left; overflow:hidden; padding:0px 30px 0px 0px;}

.menu ul li a { font-weight: bold; display:block; height:29px; text-indent:-1000em; overflow:hidden; font-size:1.2em; color:#000; text-transform:uppercase; text-decoration:none;}

.menu ul li a.menu01 { background:url(images/menu01.png) no-repeat 0 0; width:83px;}
.menu ul li a.menu01:hover {background:url(images/menu011.png) no-repeat left bottom; width:83px;}
.menu ul li a.menu02 { background:url(images/menu02.png) no-repeat 0 0; width:92px;}
.menu ul li a.menu02:hover {background:url(images/menu022.png) no-repeat left bottom; width:92px;}
.menu ul li a.menu03 { background:url(images/menu03.png) no-repeat 0 0; width:60px;}
.menu ul li a.menu03:hover {background:url(images/menu033.png) no-repeat left bottom; width:60px;}
.menu ul li a.menu04 { background:url(images/menu04.png) no-repeat 0 0; width:180px;}
.menu ul li a.menu04:hover {background:url(images/menu044.png) no-repeat left bottom; width:180px;}
.menu ul li a.menu05 { background:url(images/menu05.png) no-repeat 0 0; width:74px;}
.menu ul li a.menu05:hover {background:url(images/menu055.png) no-repeat left bottom; width:74px;}
.menu ul li a.menu06 { background:url(images/menu06.png) no-repeat 0 0; width:127px;}
.menu ul li a.menu06:hover {background:url(images/menu066.png) no-repeat left bottom; width:127px;}
.menu ul li a.menu07 { background:url(images/menu07.png) no-repeat 0 0; width:189px;}
.menu ul li a.menu07:hover {background:url(images/menu077.png) no-repeat left bottom; width:189px;}
.menu ul li a.menu08 { background:url(images/menu08.png) no-repeat 0 0; width:109px;}
.menu ul li a.menu08:hover {background:url(images/menu088.png) no-repeat left bottom; width:109px;}

.menu ul li a:hover { text-decoration:underline;}

.menu ul li.current_page_item a {}

/*** Logo ***/
.logo { clear:both; overflow:hidden; background:none; height:100%;}
.logo .indent { padding:28px 0px 0px 58px; overflow:hidden;}
.logo h1 { float:left;
display:block; overflow:hidden;
width:631px; height:73px;
background:none;
font-size:2.1em; color:#fff; text-indent:-1000em; cursor:pointer;
}
.logo h1:hover { text-decoration:none;}

.description {}

/*** Slogan ***/
.slogan {}

/*** Search ***/
.search { float:right; height:39px; background:none;}
.search .indent { overflow:hidden; padding:4px 86px 0px 17px; text-align:right;}

.search form { background:url(images/search-bgr.gif) no-repeat right 0; padding:3px 5px 5px 40px;}
.search .text { width:160px; padding:0px 0px 1px 5px; border:0; background: transparent; margin:0px 12px 0px 0px;}
.search .but { cursor: pointer; margin:0px 0px 0px 0px; _margin-top:-3px;}

/*** Rss ***/
.rss {}

/*** Column ***/
.content { clear:both; overflow:auto; padding:0px 0px 0px 0px;height:auto}

.column-right { float:right; position:absolute; background:black; width:375px; right: -17px; top: 110px; margin:0px 0px 0px 0px; _margin:0px 0px 0px -3px; padding:0px 0px 1595px 0px;}


/*** Widgets ***/
.widget {
clear:both;
overflow:hidden; height:100%;
padding:0px 0px 0px 0px;
margin:0px 0px 0px 0px;
}

.widget .widget-bgr {
overflow:hidden; height:100%;
padding:5px 15px 13px 29px;}

.widget .title {
overflow:hidden; height:100%;
margin:0px 0px 9px 0px;
}

.widget .title div {}
.widget .title div div {}

.widget h2 {
overflow:hidden; height:100%;
font-weight: normal; font-size:1.6em; line-height:1.2em;
color:#323232;
padding:0px 10px 0px 0px;
}

.widget ul {
clear:both; line-height:1.3em;
font-size:12px; overflow:hidden;
color:#323232;
margin:0px 14px 0px 2px;
}

.widget ul li {
overflow:hidden; height:100%;
background:url(images/widget-line.gif) repeat-x 0 bottom;
padding:1px 0px 5px 6px; margin:0px 0px 3px 0px;
}

.widget ul li a {
display:block; height:100%;
background:url(images/widget.gif) no-repeat 0 0px;
font-size:12px;
color:#323232;
padding:0px 0px 1px 22px;
}

.widget ul li a { text-decoration:none;}
.widget ul li a:hover { text-decoration: underline;}

.widget ul ul { font-size:100%; margin:0px 0px -3px 0px; padding:0px 0px 0px 20px;}
.widget ul ul li { border:0; background: none; margin:2px 0px 0px 0px;}

/*** widget_tag_cloud ***/
.widget_tag_cloud {}
.widget_tag_cloud h2 {}

.widget_tag_cloud a { padding:0px 7px 0 0; font-size:11px; color:#787878; line-height:1.7em;}
.widget_tag_cloud .widget-bgr div { padding:0px 20px 0px 20px;}
.widget_tag_cloud .widget-bgr .title { padding:0;}
.widget_tag_cloud .widget-bgr .title div { padding:0px 0px 0px 0px;}
.widget_tag_cloud .widget-bgr .title div div { padding:0px 4px 0px 0px;}

.widget_tag_cloud a { text-decoration:none;}
.widget_tag_cloud a:hover { text-decoration: underline;}

/*** widget_text ***/
.textwidget { color:#000; font-size:1.2em; line-height:1.3em; padding:0px 0px 40px 20px;}
.textwidget a { color:#000;}

/*** widget_page ***/

/*** widget_categories ***/
.widget_categories h2 { height:16px; text-indent:-1000em; background:url(images/widget02.gif) no-repeat 0 0; _margin:3px 0px 0px 0px;}
.widget_categories ul li { padding:1px 0px 5px 4px; margin:0px 0px 3px 0px; _line-height:16px;}
.widget_categories ul li a { background:url(images/marker.gif) no-repeat 0 1px; padding:0px 0px 1px 24px; _line-height:13px; _padding:1px 0px 2px 24px;}

/*** widget_archive ***/
.widget_archive h2 { height:16px; text-indent:-1000em; background:url(images/widget04.gif) no-repeat 0 0;}

/*** widget_meta ***/
.widget_meta h2 { height:16px; text-indent:-1000em; background:url(images/widget05.gif) no-repeat 0 0; margin:2px 0px 0px 0px;}

/*** widget_links ***/

/*** widget_recent_entries ***/

/*** widget_recent_comments ***/
.widget_recent_comments ul li { font-weight: bold;}
.widget_recent_comments ul li a { background: none; font-weight: normal;}

/*** widget_other ***/
.widget_review h2 { height:16px; text-indent:-1000em; background:url(images/widget01.gif) no-repeat 0 0;}
.widget_review .review img { margin:0px 14px 0px 0px;}

.widget_gallery { padding:0px 0px 3px 0px;}
.widget_gallery h2 { height:16px; text-indent:-1000em; background:url(images/widget03.gif) no-repeat 0 0; margin:1px 0px 4px 0px;}
.widget_gallery .gallery img { margin:0px 7px 0px 0px;}
.widget_gallery .gallery p { padding:0px 0px 5px 0px; _padding:0px 0px 8px 0px;}

.column-right .banner { padding:0px 0px 40px 29px;}

.content #wp-calendar * { color:#000; font-size:12px;}

#search form { padding:10px 0px 0px 10px;}

#search form .text { display:block; margin:0px 0px 8px 0px;}

.search_page .text { padding:0px 0px 0px 5px;}

#search form .but { margin:0px 0px 0px -3px;}

.widget_calendar table { margin:10px 0px 0px 20px;}

/*** Content ***/

.column-center { overflow:hidden; height:100%; width:685px; padding:320px 27px 100px 5px;}

.custom { padding:0px 0px 20px 0px;}
.custom .custom-content { background:#232323; height:230px;}
.custom .custom-content .left { float:left; width:374px;}
.custom .custom-content .right { overflow:hidden; height:100%;}
.custom .custom-indent { overflow:hidden; height:100%; padding:14px 12px 0px 14px; _margin:0px 0px 0px -3px; line-height:1.2em; _line-height:15px; font-size:12px; color:#fff;}

.custom .custom-indent p { padding:0px 0px 21px 0px;}
.custom .custom-indent p strong { font-size:11px; color:#b8d914;}
.custom .custom-indent h2 { overflow:hidden; text-indent:-1000em; height:45px; background:url(images/custom.gif) no-repeat 0 0; padding:0px 0px 4px 0px;}

.custom .custom-indent .more-link { display:block; margin:21px 0px 0px 1px; color:#b8d914; _margin-top:20px;}

.custom .gallery { clear:both; overflow:hidden; height:100%; font-size:0; line-height:0; background:url(images/gallery.gif) repeat-x 0 bottom; padding:3px 0px 27px 0px; _padding-top:6px;}
.custom .gallery img { margin:0px 5px 0px 0px; _margin:0px 5px 0px 0px;}
.custom .gallery img.right { margin:0px 0px 0px 0px;}

.column-center .indent { clear:both; overflow:hidden; height:100%; width:685px; padding:0px 0px 20px 0px; margin:0px 0px 20px 0px; background:url(images/line.gif) repeat-x 0 bottom;}

/*** Title wrapper ***/
.column-center .title {
overflow:hidden; height:100%;
padding:0px 0px 0px 0px;
margin:0px 0px 8px 0px;

}

.column-center .title h2 {
overflow:hidden; height:100%;
font-size:1.2em; /*font-weight: normal;*/
color:#1887a7; line-height:1.3em;
padding:1px 0px 0px 1px;
}

.column-center .title h3 {
overflow:hidden; height:100%;
font-size:2em; font-weight: normal;
color:#2c555d; line-height:1.3em;
padding:13px 5px 0px 0px;
}

.column-center .title h2 a,
.column-center .title h3 a { color:#00ff66; text-decoration:none;}

.column-center .title h2 a:hover,
.column-center .title h3 a:hover { text-decoration: underline;}

/******/
.page-id-7 .title-page01 {

background: url("images/title_page01.png") no-repeat scroll 0 0 transparent;

left: 250px;

padding: 40px 0 0;

position: absolute;

top: 416px;

}



.page-id-9 .title-page01 {

background: url("images/title_page02.png") no-repeat scroll 0 0 transparent;

left: 300px;

padding: 40px 0 0;

position: absolute;

top: 416px;

}

.page-id-11 .title-page01 {

background: url("images/title_page03.png") no-repeat scroll 0 0 transparent;

left: 200px;

padding: 40px 0 0;

position: absolute;

top: 416px;

}

.page-id-13 .title-page01 {

background: url("images/title_page04.png") no-repeat scroll 0 0 transparent;

left: 280px;

padding: 40px 0 0;

position: absolute;

top: 416px;

}

.page-id-15 .title-page01 {

background: url("images/title_page05.png") no-repeat scroll 0 0 transparent;

left: 230px;

padding: 40px 0 0;

position: absolute;

top: 416px;

}

.page-id-172 .title-page01 {

background: url("images/title_page06.png") no-repeat scroll 0 0 transparent;

left: 180px;

padding: 40px 0 0;

position: absolute;

top: 416px;

}

.page-id-17 .title-page01 {

background: url("images/title_page07.png") no-repeat scroll 0 0 transparent;

left: 250px;

padding: 40px 0 0;

position: absolute;

top: 416px;

}


/*** Date ***/
.date {
float: left;
overflow:hidden;
font-size: 1.1em; color:#c0c0c0;
padding:3px 0px 4px 1px; margin:0px 0px 0px 0px;
}

.date span {}

/*** author ***/
.author {
float: right;
overflow:hidden;
font-size: 1.1em; color:#c0c0c0;
padding:3px 12px 0px 0px;
}

/*** Text box ***/
.text-box {
clear:both;
/*overflow:hidden; height:100%;*/
font-size:1.2em; line-height:1.35em;
padding:1px 0px 0px 0px;
}

.text-box p { padding:0px 0px 9px 0px;}

.text-box p strong { color:#00ff66;}
.text-box p span {}

.text-box .fleft { margin:-1px 0px 0px 0px; padding:0px 0px 0px 0px; display: inline; float:left; overflow:hidden; height:100%;}
.text-box .fleft img { margin:0px 15px 9px 1px;}

.text-box p.img { font-size:0; overflow:hidden; line-height:0; margin:0px 0px 0px 0px; padding:0px 0px 0px 0px;}

.text-box .font { font-size:12px; color:#212121; line-height:1.4em; padding:7px 0px 0px 0px;}
.text-box .font p { padding:0px 0px 8px 0px;}

.text-box .mr { margin:0px 10px 0px 0px;}

/******/
.more-link {}

.more-link { clear:both; display:block;
background:url(images/more-link.gif) no-repeat 0 4px;
font-size:12px; font-weight: bold;
color:#000; text-decoration:none;
padding:0px 0px 0px 13px; margin:5px 0px 0px 0px;
}

.more-link:hover { text-decoration: underline;}

/******/
.comments { padding:0px 0px 0px 3px;}

.comments a { float:left; display:block; background:url(images/comments.gif) no-repeat 0 1px; font-size:12px; color:#242424; font-weight: bold; padding:0px 0px 5px 24px;}

.comments a { text-decoration:none; }
.comments a:hover { text-decoration: underline;}

/******/
.postmetadata { clear:both; font-size:12px; padding:6px 0px 5px 0px;}
.postmetadata a { padding:0px 1px 0px 5px; /*color:#000;*/}


/******/
.link-edit { float:right; padding:3px 10px 0px 0px; margin:0px 0px 0px 0px;}
.link-edit a { font-size:12px; font-weight: bold; color:#000;}

/******/
.navigation { clear:both; font-size:12px; color:#1887a7; padding:5px 0px 5px 0px;}
.navigation a {
font-size:12px; color:#1887a7;
padding:0px 0px 0px 0px; line-height:1.3em;
}

.navigation a { text-decoration:none;}
.navigation a:hover { text-decoration: underline;}

.nav-top { margin:0px 0px 0px 0px; padding:5px 0px 0px 0px;}

/*******/
.text-box h1, .text-box h2, .text-box h3, .text-box h4, .text-box h5, .text-box h6 { color:#fff; font-family:Arial; line-height:1.5em;}
.text-box h1 { font-size:19px; font-weight: normal; line-height:1.2em; display:block; height:100%; padding:0px 0px 13px 0px;}
.text-box h2 { font-size:17px; font-weight: normal;}
.text-box h3 { font-size:16px;}
.text-box h4 { font-size:15px; text-transform:uppercase; font-family:Arial;}
.text-box h5 { font-size:14px;}
.text-box h6 { font-size:12px;}

/*** OL UL style***/
.text-box ul { padding:0px 0px 7px 0px; overflow:hidden; height:100%;}
.text-box ul li { background:url(images/marker.gif) no-repeat 0 1px; padding:0px 0px 8px 18px; list-style-image:none; list-style:none; font-weight:normal;}
.text-box ul li ul { margin-left:10px;}
.text-box ul li ol { margin-left:15px;}
.text-box ul li ol li { list-style-type:decimal;}

.text-box ol { padding-left:2px;}
.text-box ol li { padding:0px; margin-left:13px; font-weight:normal;list-style-type:decimal;}
.text-box ol li ul { padding:2px 0px 5px 2px;}
.text-box ol li ul li { font-weight:normal; background:url(images/marker.gif) no-repeat 0 1px; padding:0px 0px 8px 18px;}

.text-box ul li { list-style-image:none; list-style:none;}

.text-box ul li a { text-decoration:none; color:#797979; font-weight: bold;}
.text-box ul li a:hover { text-decoration:underline;}

.text-box ul li ul { margin-left:15px;}
.text-box ul li ol {margin-left:20px;}
.text-box ul li ol li { list-style-type:decimal;background:none;}
.text-box ul li ol li a {}

.text-box ol { padding:5px 0px 5px 2px;}
.text-box ol li{ padding:0px; margin-left:20px;}
.text-box ol li a { padding-left:0px; text-decoration:none; font-weight:normal;}
.text-box ol li a:hover{ text-decoration:underline; }
.text-box ol li ul li a { font-weight:normal; text-decoration:underline;}
.text-box ol li ul li a:hover {text-decoration:none;}

/*** Footer ****/
.footer {

clear:both; overflow:hidden; height:100%;

font-size:1.2em;

line-height:1.5em; color:#00FF66;

margin:20px 0px 0px 0px;

}

.footer .width { width:584px; background:url(images/footer.gif) repeat-x 0 0;}

.footer .indent {
overflow:hidden; height:100%;
padding:42px 0px 15px 0px;
}

.footer a { color:#00FF66;}

.footer a { text-decoration:none;}
.footer a:hover { text-decoration: underline;}

/* -----------------------------------------------------------------
---------------------------- WP ------------------------------------
----------------------------------------------------------------- */

.info-sidebar { clear:both; padding:20px 20px 20px 20px; width: auto; color:#000; overflow: hidden; font-size:1.2em; line-height:1.4em;}
.info-sidebar a { text-transform:none; color:#000;}

.pagetitle { font-size:2.1em; font-weight: normal; overflow:hidden; color: #000; text-align:center; padding:6px 12px 10px 12px; *padding:6px 12px 10px 12px;}

/*--- Navigations ---*/
.navigation { clear:both; overflow:hidden; /*line-height:13px;*/}
.navigation .alignleft { float: left; width:45%; text-align:left; padding:0px 0px 0px 0px;}
.navigation .alignright { float: right; width:45%; text-align:right; padding:0px 0px 0px 0px;}
.nav-top .alignright a { float: right; }


.pd-nav { padding:0; margin:0;}
.pd-nav .alignleft { padding:0; margin:0;}
.pd-nav .alignright { padding:0; margin:0;}

.pd-title {padding-bottom:0;}

.marg { margin-bottom:10px;}

/*--- Begin Images ---*/
p img {
padding: 0;
max-width: 100%;}

img.centered {
display: block;
margin-left: auto;
margin-right: auto;}

img.alignright { float: right;display:inline;
padding: 0;
margin: 3px 0px 10px 20px;}

img.alignleft { padding: 0; margin: 3px 25px 5px 0; float:left; display:inline;}

/*------*/
#tag_cloud .widget-bottom-left { padding-bottom:15px;}
#tag_cloud .widget-heading { margin-bottom:15px;}
#tag_cloud a { padding-left:3px;}

/*--- Popup styles ---*/
#commentspopup {}
#commentspopup #header {background:#2F3F99 url(images/popup_header_bg.gif) top repeat-x;}
#commentspopup .page-padding {padding:0 5px;}
#commentspopup .page-width {width:538px; margin:0 auto;}
#commentspopup .header-top {background:url(images/popup_header_bg_top.jpg) top repeat-x;}
#commentspopup .header-top-right {background:url(images/popup_header_bg_top_right.jpg) top right no-repeat;}
#commentspopup .header-top-left {background:url(images/popup_header_bg_top_left.jpg) top left no-repeat; width:100%; height:160px;}
#commentspopup .header-padding {padding:39px 0 0 89px;}
#commentspopup h1 {font-size:1em; margin:0; padding:0; color:#E1E7EC; text-indent:-10000em; width:141px; height:27px;}
#commentspopup h1:hover {text-decoration: none; cursor:pointer;}
#commentspopup .description {width:141px; height:9px; text-indent:-10000em; margin-top:2px;}
#commentspopup .description2 {width:249px; height:27px; text-indent:-10000em; margin-top:19px;}
#commentspopup .border-bottom-left {padding:17px 37px 10px;}
#commentspopup p {font-size:12px;}


/*--- Begin Typography & Colors ---*/
small { font-size: 1em; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px;}
small * {font-size: 0.9em;}
small p {font-size: 0.9em;}

select { width: 130px;}

#commentform { font-size:1.2em; overflow:hidden; height:100%; padding:0px 25px 0px 0px;}

/*.commentform {float:left;}*/
#commentform input {
margin: 5px 5px 1px 0;}

#commentform {
margin: 5px 0px 0 0;}

#commentform textarea {
width: 100%;
padding: 2px;}

#respond:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;}

#commentform #submit {
/*margin: 0 0 10px auto;
float: right;*/ /*margin:0px 0px 0px 319px;*/}

#respond p { padding:0px 0px 10px 0px; text-indent:0;}
#respond form p { padding:0px 0px 10px 0px; text-indent:0;}

/*--- Begin Calendar ---*/
#wp-calendar { empty-cells:show; width: 155px;}

#wp-calendar th { padding:3px 0; text-align:center; color:#fff;}
#wp-calendar td { padding:3px 0; text-align:center; color:#fff;}

#wp-calendar a { display: block; font-weight:bold; color:#fff;}
#wp-calendar #next a { padding-right: 10px; text-align: right; font-weight: normal;}
#wp-calendar #prev a { padding-left: 10px; text-align: left; font-weight: normal;}

#wp-calendar caption { text-align: center; color:#fff; font-weight:bold; font-size:1.3em; padding:0px 0px 6px 0px;}


/* Begin Various Tags & Classes */
acronym, abbr, span.caps {
cursor: help;
}

acronym, abbr {
border-bottom:1px dashed #999;
}

blockquote {
border:1px solid #181818; color:#fff;
background:#3a3a3a; padding:15px 10px 10px 20px; margin:5px 0;
}

blockquote cite {
margin: 5px 0 0;
display: block;
}


/* Captions */
.aligncenter,
div.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;}

.wp-caption {
border: 1px solid #ddd;
text-align: center;
background-color: #f3f3f3;
padding-top: 4px;
margin: 10px;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;}

.wp-caption img {
margin: 0;
padding: 0;
border: 0 none;}

.wp-caption p.wp-caption-text {
font-size: 11px;
line-height: 17px;
padding: 0 4px 5px;
margin: 0;}


/* Begin Comments*/
.alt { clear:both; padding-bottom:20px; font-weight: normal;}

.alt a { padding:0px 0px 0px 0px; text-decoration:underline;}

.commentlist { color:#fff;
text-align: justify;
}
.commentlist a { color:#fff}
.commentlist span { color:#fff; font-weight: bold;}

ol.commentlist li { list-style: none; font-size:12px;
margin:6px 0px 6px 0px;
padding: 5px 10px 3px;
/*list-style: none;*/
border:1px solid #181818; color:#fff;
background:#3a3a3a;
}

.commentlist li .avatar {
float: right;
border: 1px solid #000;
padding: 2px;
background: #fff; /*margin:0px 20px 15px 0px;*/
}

.commentlist p { color:#fff;
margin: 10px 5px 10px 0;
}

#commentform p {
margin: 5px 0;
padding-left:15px;
}

.nocomments {
text-align: center;
margin: 0;
padding: 0;
}

.commentmetadata {
margin: 0;
display: block;
}



AdamGold comments:

No, go to your header.php and replace the following code:

<script language="javascript">

jQuery(document).ready(function(){

jQuery("#shslideshow #slide").cycle({

fx: "fade",random:0,fastOnEvent:0,

fit:1,

speed: 1000,timeout: 5000});

});

</script>



with:

<script language="javascript">

jQuery(document).ready(function(){

jQuery("#shslideshow #slide").cycle({

fx: "fade",random:0,fastOnEvent:0,

fit:1,

speed: 1000,timeout: 5000});

jQuery('.main').css('height', 'auto');

});

</script>


ddoodnath comments:

my header.php file has this


<script type="text/Javascript">
function togglecomments (postid) {
var whichpost = document.getElementById(postid);
if (whichpost.className=="commentshown") { whichpost.className="commenthidden"; } else { whichpost.className="commentshown"; }
} </script>


AdamGold comments:

So replace this with

<script type="text/Javascript">

function togglecomments (postid) {

var whichpost = document.getElementById(postid);

if (whichpost.className=="commentshown") { whichpost.className="commenthidden"; } else { whichpost.className="commentshown"; }

}
jQuery(document).ready( function() {

jQuery('#main').css('height', 'auto');

});</script>


ddoodnath comments:

that did not work .....


AdamGold comments:

Go to your CSS file and replace:
body {background: black;
background-attachment:fixed;overflow:scroll; font-size:62.5%; font-family: Verdana, Helvetica, sans-serif; color:#ffffff;}

With:
body {background: black;
background-attachment:fixed;overflow:scroll; font-size:62.5%; font-family: Verdana, Helvetica, sans-serif; color:#ffffff; height: auto; }


ddoodnath comments:

how much would it cost for you to fix it?


AdamGold comments:

Send me a message and I will fix this. I charge 30$ / h.
I already encountered the problem, just thinking of how to resolve this.

2011-04-12

Dan | gteh answers:

remove
overflow:hidden;
and that should fix it


ddoodnath comments:

it did not work :(

2011-04-12

takycardia answers:

instead of overflow:hidden use overflow:auto


ddoodnath comments:

that did not work either :(

2011-04-12

RNWest answers:

HI

Your style.css about line 46 make it look like below

.main-bgr { height: 100%;}

Thanks


ddoodnath comments:

line 46 looks like this:

.main-bgr { overflow:hidden; height:100%;}