jquery slideToggle() help!
- khanvict
- Born


- Joined: Mar 01, 2011
- Posts: 4
- Status: Offline
post edit again
I solved my main issue which was toggling individual posts on my wordpress blog but I still have 2 lingering issues:
1 - the toggle will not slide the block/background element where these posts are contained but will push down the other elements below.
googling this issue I came across someone else encountering something similar but the solution is not explained in detail. something about float and clear issue is mentioned.
the url for reference: stackoverflow(dot)com/questions/2586176/jquery-toggle-pushing-other-elements-around-bullies
2- the toggle effect itself kind of has a stutter or hesitation which I don't think is normal?
Can someone please look at my CSS and possibly tell me what could fix these issues?
Here is what I have:
HTML:
SCRIPT:
CSS:
I solved my main issue which was toggling individual posts on my wordpress blog but I still have 2 lingering issues:
1 - the toggle will not slide the block/background element where these posts are contained but will push down the other elements below.
googling this issue I came across someone else encountering something similar but the solution is not explained in detail. something about float and clear issue is mentioned.
the url for reference: stackoverflow(dot)com/questions/2586176/jquery-toggle-pushing-other-elements-around-bullies
2- the toggle effect itself kind of has a stutter or hesitation which I don't think is normal?
Can someone please look at my CSS and possibly tell me what could fix these issues?
Here is what I have:
HTML:
Code: [ Select ]
<html>
<body>
<div class="cCRight">
<a class="moreless" href="#"> More / Less</a>
</div>
<div class="expand">
<?php the_content(); ?>
</div>
</body>
</html>
<body>
<div class="cCRight">
<a class="moreless" href="#"> More / Less</a>
</div>
<div class="expand">
<?php the_content(); ?>
</div>
</body>
</html>
- <html>
- <body>
- <div class="cCRight">
- <a class="moreless" href="#"> More / Less</a>
- </div>
- <div class="expand">
- <?php the_content(); ?>
- </div>
- </body>
- </html>
SCRIPT:
Code: [ Select ]
<script>
$(document).ready(function() {
$('.expand').hide();
$('a.moreless').click(function() {
$(this).closest('.post').find('.expand').toggle(400);
return false;
});
});
</script>
$(document).ready(function() {
$('.expand').hide();
$('a.moreless').click(function() {
$(this).closest('.post').find('.expand').toggle(400);
return false;
});
});
</script>
- <script>
- $(document).ready(function() {
- $('.expand').hide();
- $('a.moreless').click(function() {
- $(this).closest('.post').find('.expand').toggle(400);
- return false;
- });
- });
- </script>
CSS:
Code: [ Select ]
html, body {
height: 100%;
width: 100%;
}
body {
font-family: Arial, Helvetica, sans-serif;
font-size:11px;
color:#000000;
background: #FFFFFF;
line-height:1.5;
text-align:center;
}
h1 {
background-color:#FFFFFF;
font-size:48px;
font-weight:bold;
text-transform:uppercase;
letter-spacing:-5px;
line-height:75%;
padding:0px 10px 0px 0px;
float:left;
background-color:#FFFFFF;
}
h2 {
/*height: 71px;*/
font-size:42px;
font-weight:bold;
text-transform:uppercase;
letter-spacing:-5px;
line-height:85%;
color:#000000;
margin:0px;
padding:0px 0px 0px 1px;
background-color:#FFFFFF;
}
h3 {
font-size:24px;
font-weight:bold;
text-transform:uppercase;
letter-spacing:-2px;
padding:20px 0px 10px 0px;
}
h1 a:link {
text-decoration:none;
color:#000000;
}
h1 a:visited {
text-decoration:none;
color:#000000;
}
h1 a:hover {
text-decoration:none;
color:#000000;
}
#wrapper {
width:960px;
height:100%;
margin: 0 auto;
text-align:left;
}
#barCode {
width: 960px;
height: 10px;
text-align:right;
margin:1px 0px 0px 0px;
padding:14px 0px 0px 0px;
}
#tagLine {
font-size:12px;
text-indent:5px;
letter-spacing:10px;
clear:both;
}
#menuWrapper {
background-color:#000000;
width: 940px;
height:35px;
padding:0px 20px 0px 0px;
}
.menu {
font-size:10px;
font-weight:bold;
text-transform:uppercase;
text-align:right;
letter-spacing:0px;
line-height:90%;
color:#FFFFFF;
margin:4px 0px 0px 0px;
float:right;
}
.menu ul {
list-style:none;
}
.menu ul li {
display: block;
}
.menu a:link {
text-decoration:none;
color:#FFFFFF;
}
.menu a:visited {
text-decoration:none;
color:#FFFFFF;
}
.menu a:hover {
text-decoration:none;
color:#FFFFFF;
}
.menuSpacer {
width:1px;
height:25px;
margin:5px 20px 0px 20px;
background-image:url(images/menuSpacer.jpg);
float:right;
}
.mainCategory {
font-size:10px;
font-weight:bold;
text-transform:uppercase;
text-align:left;
line-height: 90%;
letter-spacing:0px;
color:#FFFFFF;
width: 940px;
height:27px;
background-color:#000000;
margin:20px 0px 0px 0px;
padding:8px 0px 0px 20px;
clear:both;
}
.maxMin {
background:url(images/maxMinBtn.jpg) top right no-repeat;
width: 10px;
height: 10px;
display: block;
position:relative;
left:910px;
top:-19px;
}
.active {
background-position: bottom;
}
.toggleMainCategory {
background-color:#000000;
width:960px;
color:#FFFFFF;
}
.postWrapper {
width:840px;
padding:90px 60px 20px 60px;
}
.post {
background-color:#000000;
height:72px;
}
.postTitleBar {
width:839px;
height:10px;
padding:0px 0px 0px 1px;
background-color:#FFFFFF;
font-size:8px;
text-transform: uppercase;
font-weight:bold;
letter-spacing:0.2px;
letter-spacing:0px;
line-height:130%;
color:#000000;
clear:both;
}
.post h2 {
font-size:30px;
height:36px;
font-weight:bold;
text-transform:uppercase;
letter-spacing:-3px;
line-height:85%;
color:#FFFFFF;
margin:0px 0px 0px -2px;
background-color:#000000;
float:left;
position: relative;
z-index: 1;
}
.cCLeft {
margin:5px 0px 0px 0px;
float:left;
clear:left;
position: relative;
z-index: 1;
;
}
.cCMiddle {
margin:18px 5px 5px 10px;
font-size:9px;
font-weight:normal;
float:left;
position: relative;
z-index: 1;
}
.cCRight {
font-size:9px;
padding:18px 0px 0px 0px;
float:right;
position: relative;
z-index: 1;
}
.expand {
width: 839px;
font-size:9px;
padding:18px 0px 0px 0px;
float:left;
clear:left;
position: relative;
z-index: 2;
}
.singlePageBg {
width:840px;
background-color:#000000;
color:#FFFFFF;
padding:90px 60px 60px 60px;
overflow:auto;
}
.anfang {
color: #FFFFFF;
display: inline;
float: left;
font-size: 35px;
line-height: 10px;
margin: 11px 5px 0px 0px;
text-transform: uppercase;
}
.singleText {
font-weight:normal;
margin:20px 0px 40px 0px;
}
.gallery img {
margin:0px;
padding:0px;
border: 0px;
background-color:#FFFFFF;
cursor:default;
}
.gallery-icon {
margin:0px;
padding:0px;
}
.gallery-item {
margin:0px;
padding:0px;
text-align:center;
}
.gallery {
margin: 0px;
padding:0px;
}
.video {
text-align:center;
}
.share {
text-align:right;
font-size:8px;
letter-spacing:0.2px;
text-transform:uppercase;
margin:20px 0px 0px 0px;
}
.aboutHolder {
width:900px;
padding:70px 0px 40px 60px;
}
.about {
width:360px;
font-weight:normal;
color:#FFFFFF;
background-color:#000000;
margin:0px 0px 20px 0px;
}
.about h2 {
width:838px;
height:26px;
font-size:30px;
text-transform:uppercase;
font-weight:bold;
letter-spacing:-4px;
line-height:90%;
margin:0px;
padding:0px;
background-color:#FFFFFF;
color:#000000;
}
.contactHolder {
width:900px;
padding:70px 0px 40px 60px;
}
.contact {
font-size:30px;
font-weight:bold;
text-transform:uppercase;
letter-spacing:-2px;
line-height:85%;
color:#FFFFFF;
background-color:#000000;
}
.contact h2 {
width:838px;
height:10px;
font-size:8px;
text-transform: uppercase;
font-weight:bold;
letter-spacing:0.2px;
letter-spacing:0px;
line-height:130%;
margin:0px 0px -25px 0px;
padding:0px 0px 0px 1px;
background-color:#FFFFFF;
color:#000000;
}
.smallerFontSize {
text-transform:uppercase;
font-size: 8px;
letter-spacing:0.2px;
}
.description {
text-transform:uppercase;
font-size: 8px;
letter-spacing:0.2px;
}
.description p {
margin:0px;
padding:0px;
}
.fontColorWhite {
color:#FFFFFF;
}
.fontColorBlack {
color:#000000;
}
a:link {
text-decoration:none;
color:#FFFFFF;
}
a:visited {
text-decoration:none;
color:#FFFFFF;
}
a:hover {
text-decoration:none;
color:#FFFFFF;
}
#footerTypoSmall {
font-size:12px;
letter-spacing:10px;
text-align:right;
text-transform:lowercase;
margin:0px 5px 0px 0px;
clear:both;
}
#footerTypo {
background-color:#FFFFFF;
font-size:48px;
font-weight:bold;
color:#000000;
text-transform:uppercase;
letter-spacing:-5px;
line-height:100%;
padding:0px 0px 0px 5px;
margin:0px 0px -14px 0px;
position:relative;
top:-10px;
float:right;
}
.footerLink {
color:#FFFFFF;
background-color:inherit;
font-size:8px;
text-decoration:none;
}
#footer {
text-transform:uppercase;
font-size:8px;
line-height:100%;
color:#FFFFFF;
width: 940px;
height:30px;
background-color:#000000;
margin:20px 0px 0px 0px;
padding:5px 0px 0px 20px;
clear:left;
}
#bottomSpacer {
width: 960px;
height:105px;
background-color:#FFFFFF;
}
#wrapperComment {
width: 320px;
margin: 0 auto;
padding:0px 0px 30px 0px;
text-align:left;
}
height: 100%;
width: 100%;
}
body {
font-family: Arial, Helvetica, sans-serif;
font-size:11px;
color:#000000;
background: #FFFFFF;
line-height:1.5;
text-align:center;
}
h1 {
background-color:#FFFFFF;
font-size:48px;
font-weight:bold;
text-transform:uppercase;
letter-spacing:-5px;
line-height:75%;
padding:0px 10px 0px 0px;
float:left;
background-color:#FFFFFF;
}
h2 {
/*height: 71px;*/
font-size:42px;
font-weight:bold;
text-transform:uppercase;
letter-spacing:-5px;
line-height:85%;
color:#000000;
margin:0px;
padding:0px 0px 0px 1px;
background-color:#FFFFFF;
}
h3 {
font-size:24px;
font-weight:bold;
text-transform:uppercase;
letter-spacing:-2px;
padding:20px 0px 10px 0px;
}
h1 a:link {
text-decoration:none;
color:#000000;
}
h1 a:visited {
text-decoration:none;
color:#000000;
}
h1 a:hover {
text-decoration:none;
color:#000000;
}
#wrapper {
width:960px;
height:100%;
margin: 0 auto;
text-align:left;
}
#barCode {
width: 960px;
height: 10px;
text-align:right;
margin:1px 0px 0px 0px;
padding:14px 0px 0px 0px;
}
#tagLine {
font-size:12px;
text-indent:5px;
letter-spacing:10px;
clear:both;
}
#menuWrapper {
background-color:#000000;
width: 940px;
height:35px;
padding:0px 20px 0px 0px;
}
.menu {
font-size:10px;
font-weight:bold;
text-transform:uppercase;
text-align:right;
letter-spacing:0px;
line-height:90%;
color:#FFFFFF;
margin:4px 0px 0px 0px;
float:right;
}
.menu ul {
list-style:none;
}
.menu ul li {
display: block;
}
.menu a:link {
text-decoration:none;
color:#FFFFFF;
}
.menu a:visited {
text-decoration:none;
color:#FFFFFF;
}
.menu a:hover {
text-decoration:none;
color:#FFFFFF;
}
.menuSpacer {
width:1px;
height:25px;
margin:5px 20px 0px 20px;
background-image:url(images/menuSpacer.jpg);
float:right;
}
.mainCategory {
font-size:10px;
font-weight:bold;
text-transform:uppercase;
text-align:left;
line-height: 90%;
letter-spacing:0px;
color:#FFFFFF;
width: 940px;
height:27px;
background-color:#000000;
margin:20px 0px 0px 0px;
padding:8px 0px 0px 20px;
clear:both;
}
.maxMin {
background:url(images/maxMinBtn.jpg) top right no-repeat;
width: 10px;
height: 10px;
display: block;
position:relative;
left:910px;
top:-19px;
}
.active {
background-position: bottom;
}
.toggleMainCategory {
background-color:#000000;
width:960px;
color:#FFFFFF;
}
.postWrapper {
width:840px;
padding:90px 60px 20px 60px;
}
.post {
background-color:#000000;
height:72px;
}
.postTitleBar {
width:839px;
height:10px;
padding:0px 0px 0px 1px;
background-color:#FFFFFF;
font-size:8px;
text-transform: uppercase;
font-weight:bold;
letter-spacing:0.2px;
letter-spacing:0px;
line-height:130%;
color:#000000;
clear:both;
}
.post h2 {
font-size:30px;
height:36px;
font-weight:bold;
text-transform:uppercase;
letter-spacing:-3px;
line-height:85%;
color:#FFFFFF;
margin:0px 0px 0px -2px;
background-color:#000000;
float:left;
position: relative;
z-index: 1;
}
.cCLeft {
margin:5px 0px 0px 0px;
float:left;
clear:left;
position: relative;
z-index: 1;
;
}
.cCMiddle {
margin:18px 5px 5px 10px;
font-size:9px;
font-weight:normal;
float:left;
position: relative;
z-index: 1;
}
.cCRight {
font-size:9px;
padding:18px 0px 0px 0px;
float:right;
position: relative;
z-index: 1;
}
.expand {
width: 839px;
font-size:9px;
padding:18px 0px 0px 0px;
float:left;
clear:left;
position: relative;
z-index: 2;
}
.singlePageBg {
width:840px;
background-color:#000000;
color:#FFFFFF;
padding:90px 60px 60px 60px;
overflow:auto;
}
.anfang {
color: #FFFFFF;
display: inline;
float: left;
font-size: 35px;
line-height: 10px;
margin: 11px 5px 0px 0px;
text-transform: uppercase;
}
.singleText {
font-weight:normal;
margin:20px 0px 40px 0px;
}
.gallery img {
margin:0px;
padding:0px;
border: 0px;
background-color:#FFFFFF;
cursor:default;
}
.gallery-icon {
margin:0px;
padding:0px;
}
.gallery-item {
margin:0px;
padding:0px;
text-align:center;
}
.gallery {
margin: 0px;
padding:0px;
}
.video {
text-align:center;
}
.share {
text-align:right;
font-size:8px;
letter-spacing:0.2px;
text-transform:uppercase;
margin:20px 0px 0px 0px;
}
.aboutHolder {
width:900px;
padding:70px 0px 40px 60px;
}
.about {
width:360px;
font-weight:normal;
color:#FFFFFF;
background-color:#000000;
margin:0px 0px 20px 0px;
}
.about h2 {
width:838px;
height:26px;
font-size:30px;
text-transform:uppercase;
font-weight:bold;
letter-spacing:-4px;
line-height:90%;
margin:0px;
padding:0px;
background-color:#FFFFFF;
color:#000000;
}
.contactHolder {
width:900px;
padding:70px 0px 40px 60px;
}
.contact {
font-size:30px;
font-weight:bold;
text-transform:uppercase;
letter-spacing:-2px;
line-height:85%;
color:#FFFFFF;
background-color:#000000;
}
.contact h2 {
width:838px;
height:10px;
font-size:8px;
text-transform: uppercase;
font-weight:bold;
letter-spacing:0.2px;
letter-spacing:0px;
line-height:130%;
margin:0px 0px -25px 0px;
padding:0px 0px 0px 1px;
background-color:#FFFFFF;
color:#000000;
}
.smallerFontSize {
text-transform:uppercase;
font-size: 8px;
letter-spacing:0.2px;
}
.description {
text-transform:uppercase;
font-size: 8px;
letter-spacing:0.2px;
}
.description p {
margin:0px;
padding:0px;
}
.fontColorWhite {
color:#FFFFFF;
}
.fontColorBlack {
color:#000000;
}
a:link {
text-decoration:none;
color:#FFFFFF;
}
a:visited {
text-decoration:none;
color:#FFFFFF;
}
a:hover {
text-decoration:none;
color:#FFFFFF;
}
#footerTypoSmall {
font-size:12px;
letter-spacing:10px;
text-align:right;
text-transform:lowercase;
margin:0px 5px 0px 0px;
clear:both;
}
#footerTypo {
background-color:#FFFFFF;
font-size:48px;
font-weight:bold;
color:#000000;
text-transform:uppercase;
letter-spacing:-5px;
line-height:100%;
padding:0px 0px 0px 5px;
margin:0px 0px -14px 0px;
position:relative;
top:-10px;
float:right;
}
.footerLink {
color:#FFFFFF;
background-color:inherit;
font-size:8px;
text-decoration:none;
}
#footer {
text-transform:uppercase;
font-size:8px;
line-height:100%;
color:#FFFFFF;
width: 940px;
height:30px;
background-color:#000000;
margin:20px 0px 0px 0px;
padding:5px 0px 0px 20px;
clear:left;
}
#bottomSpacer {
width: 960px;
height:105px;
background-color:#FFFFFF;
}
#wrapperComment {
width: 320px;
margin: 0 auto;
padding:0px 0px 30px 0px;
text-align:left;
}
- html, body {
- height: 100%;
- width: 100%;
- }
- body {
- font-family: Arial, Helvetica, sans-serif;
- font-size:11px;
- color:#000000;
- background: #FFFFFF;
- line-height:1.5;
- text-align:center;
- }
- h1 {
- background-color:#FFFFFF;
- font-size:48px;
- font-weight:bold;
- text-transform:uppercase;
- letter-spacing:-5px;
- line-height:75%;
- padding:0px 10px 0px 0px;
- float:left;
- background-color:#FFFFFF;
- }
- h2 {
- /*height: 71px;*/
- font-size:42px;
- font-weight:bold;
- text-transform:uppercase;
- letter-spacing:-5px;
- line-height:85%;
- color:#000000;
- margin:0px;
- padding:0px 0px 0px 1px;
- background-color:#FFFFFF;
- }
- h3 {
- font-size:24px;
- font-weight:bold;
- text-transform:uppercase;
- letter-spacing:-2px;
- padding:20px 0px 10px 0px;
- }
- h1 a:link {
- text-decoration:none;
- color:#000000;
- }
- h1 a:visited {
- text-decoration:none;
- color:#000000;
- }
- h1 a:hover {
- text-decoration:none;
- color:#000000;
- }
- #wrapper {
- width:960px;
- height:100%;
- margin: 0 auto;
- text-align:left;
- }
- #barCode {
- width: 960px;
- height: 10px;
- text-align:right;
- margin:1px 0px 0px 0px;
- padding:14px 0px 0px 0px;
- }
- #tagLine {
- font-size:12px;
- text-indent:5px;
- letter-spacing:10px;
- clear:both;
- }
- #menuWrapper {
- background-color:#000000;
- width: 940px;
- height:35px;
- padding:0px 20px 0px 0px;
- }
- .menu {
- font-size:10px;
- font-weight:bold;
- text-transform:uppercase;
- text-align:right;
- letter-spacing:0px;
- line-height:90%;
- color:#FFFFFF;
- margin:4px 0px 0px 0px;
- float:right;
- }
- .menu ul {
- list-style:none;
- }
- .menu ul li {
- display: block;
- }
- .menu a:link {
- text-decoration:none;
- color:#FFFFFF;
- }
- .menu a:visited {
- text-decoration:none;
- color:#FFFFFF;
- }
- .menu a:hover {
- text-decoration:none;
- color:#FFFFFF;
- }
- .menuSpacer {
- width:1px;
- height:25px;
- margin:5px 20px 0px 20px;
- background-image:url(images/menuSpacer.jpg);
- float:right;
- }
- .mainCategory {
- font-size:10px;
- font-weight:bold;
- text-transform:uppercase;
- text-align:left;
- line-height: 90%;
- letter-spacing:0px;
- color:#FFFFFF;
- width: 940px;
- height:27px;
- background-color:#000000;
- margin:20px 0px 0px 0px;
- padding:8px 0px 0px 20px;
- clear:both;
- }
- .maxMin {
- background:url(images/maxMinBtn.jpg) top right no-repeat;
- width: 10px;
- height: 10px;
- display: block;
- position:relative;
- left:910px;
- top:-19px;
- }
- .active {
- background-position: bottom;
- }
- .toggleMainCategory {
- background-color:#000000;
- width:960px;
- color:#FFFFFF;
- }
- .postWrapper {
- width:840px;
- padding:90px 60px 20px 60px;
- }
- .post {
- background-color:#000000;
- height:72px;
- }
- .postTitleBar {
- width:839px;
- height:10px;
- padding:0px 0px 0px 1px;
- background-color:#FFFFFF;
- font-size:8px;
- text-transform: uppercase;
- font-weight:bold;
- letter-spacing:0.2px;
- letter-spacing:0px;
- line-height:130%;
- color:#000000;
- clear:both;
- }
- .post h2 {
- font-size:30px;
- height:36px;
- font-weight:bold;
- text-transform:uppercase;
- letter-spacing:-3px;
- line-height:85%;
- color:#FFFFFF;
- margin:0px 0px 0px -2px;
- background-color:#000000;
- float:left;
- position: relative;
- z-index: 1;
- }
- .cCLeft {
- margin:5px 0px 0px 0px;
- float:left;
- clear:left;
- position: relative;
- z-index: 1;
- ;
- }
- .cCMiddle {
- margin:18px 5px 5px 10px;
- font-size:9px;
- font-weight:normal;
- float:left;
- position: relative;
- z-index: 1;
- }
- .cCRight {
- font-size:9px;
- padding:18px 0px 0px 0px;
- float:right;
- position: relative;
- z-index: 1;
- }
- .expand {
- width: 839px;
- font-size:9px;
- padding:18px 0px 0px 0px;
- float:left;
- clear:left;
- position: relative;
- z-index: 2;
- }
- .singlePageBg {
- width:840px;
- background-color:#000000;
- color:#FFFFFF;
- padding:90px 60px 60px 60px;
- overflow:auto;
- }
- .anfang {
- color: #FFFFFF;
- display: inline;
- float: left;
- font-size: 35px;
- line-height: 10px;
- margin: 11px 5px 0px 0px;
- text-transform: uppercase;
- }
- .singleText {
- font-weight:normal;
- margin:20px 0px 40px 0px;
- }
- .gallery img {
- margin:0px;
- padding:0px;
- border: 0px;
- background-color:#FFFFFF;
- cursor:default;
- }
- .gallery-icon {
- margin:0px;
- padding:0px;
- }
- .gallery-item {
- margin:0px;
- padding:0px;
- text-align:center;
- }
- .gallery {
- margin: 0px;
- padding:0px;
- }
- .video {
- text-align:center;
- }
- .share {
- text-align:right;
- font-size:8px;
- letter-spacing:0.2px;
- text-transform:uppercase;
- margin:20px 0px 0px 0px;
- }
- .aboutHolder {
- width:900px;
- padding:70px 0px 40px 60px;
- }
- .about {
- width:360px;
- font-weight:normal;
- color:#FFFFFF;
- background-color:#000000;
- margin:0px 0px 20px 0px;
- }
- .about h2 {
- width:838px;
- height:26px;
- font-size:30px;
- text-transform:uppercase;
- font-weight:bold;
- letter-spacing:-4px;
- line-height:90%;
- margin:0px;
- padding:0px;
- background-color:#FFFFFF;
- color:#000000;
- }
- .contactHolder {
- width:900px;
- padding:70px 0px 40px 60px;
- }
- .contact {
- font-size:30px;
- font-weight:bold;
- text-transform:uppercase;
- letter-spacing:-2px;
- line-height:85%;
- color:#FFFFFF;
- background-color:#000000;
- }
- .contact h2 {
- width:838px;
- height:10px;
- font-size:8px;
- text-transform: uppercase;
- font-weight:bold;
- letter-spacing:0.2px;
- letter-spacing:0px;
- line-height:130%;
- margin:0px 0px -25px 0px;
- padding:0px 0px 0px 1px;
- background-color:#FFFFFF;
- color:#000000;
- }
- .smallerFontSize {
- text-transform:uppercase;
- font-size: 8px;
- letter-spacing:0.2px;
- }
- .description {
- text-transform:uppercase;
- font-size: 8px;
- letter-spacing:0.2px;
- }
- .description p {
- margin:0px;
- padding:0px;
- }
- .fontColorWhite {
- color:#FFFFFF;
- }
- .fontColorBlack {
- color:#000000;
- }
- a:link {
- text-decoration:none;
- color:#FFFFFF;
- }
- a:visited {
- text-decoration:none;
- color:#FFFFFF;
- }
- a:hover {
- text-decoration:none;
- color:#FFFFFF;
- }
- #footerTypoSmall {
- font-size:12px;
- letter-spacing:10px;
- text-align:right;
- text-transform:lowercase;
- margin:0px 5px 0px 0px;
- clear:both;
- }
- #footerTypo {
- background-color:#FFFFFF;
- font-size:48px;
- font-weight:bold;
- color:#000000;
- text-transform:uppercase;
- letter-spacing:-5px;
- line-height:100%;
- padding:0px 0px 0px 5px;
- margin:0px 0px -14px 0px;
- position:relative;
- top:-10px;
- float:right;
- }
- .footerLink {
- color:#FFFFFF;
- background-color:inherit;
- font-size:8px;
- text-decoration:none;
- }
- #footer {
- text-transform:uppercase;
- font-size:8px;
- line-height:100%;
- color:#FFFFFF;
- width: 940px;
- height:30px;
- background-color:#000000;
- margin:20px 0px 0px 0px;
- padding:5px 0px 0px 20px;
- clear:left;
- }
- #bottomSpacer {
- width: 960px;
- height:105px;
- background-color:#FFFFFF;
- }
- #wrapperComment {
- width: 320px;
- margin: 0 auto;
- padding:0px 0px 30px 0px;
- text-align:left;
- }
- Anonymous
- Bot


- Joined: 25 Feb 2008
- Posts: ?
- Loc: Ozzuland
- Status: Online
March 12th, 2011, 8:50 am
- Bigwebmaster
- Site Admin


- Joined: Dec 20, 2002
- Posts: 8926
- Loc: Seattle, WA & Phoenix, AZ
- Status: Offline
If you do not mind could you please post the URL to this. Your account at Ozzu now has permission to post URLs. I tried to re-duplicate it based on what you have given me, but I think I need your entire web page which you did not give me. Once I look at your site I may be able to see what is going on better.
Ozzu Hosting - Want your website on a fast server like Ozzu?
- khanvict
- Born


- Joined: Mar 01, 2011
- Posts: 4
- Status: Offline
I appreciate your help but I was able to resolve all the issues I was having yesterday. I added float+clear properties to the post wrapper which fixed the first problem and then moved the <script> </script> tags to the header which took care of the other glitch.
simple enough in hindsight but very stressful trying to troubleshoot it down.
=)
simple enough in hindsight but very stressful trying to troubleshoot it down.
=)
- Bigwebmaster
- Site Admin


- Joined: Dec 20, 2002
- Posts: 8926
- Loc: Seattle, WA & Phoenix, AZ
- Status: Offline
Glad you were able to resolve everything, and thanks for letting us know your resolution 
Ozzu Hosting - Want your website on a fast server like Ozzu?
- khanvict
- Born


- Joined: Mar 01, 2011
- Posts: 4
- Status: Offline
I have a flaw in my resolution.
I mentioned that I had an issue previously where the toggle would not slide the block/background element where these posts are contained but will push down the other elements below.
I thought I did have the issue resolved but apparently it will still not slide the background down for only the earliest post in my category. It will for every other one. I didn't realize this previously cause I only put one line of dummy content which just happened to still fit within the margins of the background.
post edit: resolved
Added the following to postwrapper div to fix the issue mentioned above:
I mentioned that I had an issue previously where the toggle would not slide the block/background element where these posts are contained but will push down the other elements below.
I thought I did have the issue resolved but apparently it will still not slide the background down for only the earliest post in my category. It will for every other one. I didn't realize this previously cause I only put one line of dummy content which just happened to still fit within the margins of the background.
post edit: resolved
Added the following to postwrapper div to fix the issue mentioned above:
Code: [ Select ]
<br style='clear: left;' />
- Bigwebmaster
- Site Admin


- Joined: Dec 20, 2002
- Posts: 8926
- Loc: Seattle, WA & Phoenix, AZ
- Status: Offline
Looks like when I finally find time to look into this, you already resolved it! Thanks again for posting how you fixed it, looks like an easy fix.
Ozzu Hosting - Want your website on a fast server like Ozzu?
Page 1 of 1
To Reply to this topic you need to LOGIN or REGISTER. It is free.
Post Information
- Total Posts in this topic: 6 posts
- Users browsing this forum: No registered users and 87 guests
- You cannot post new topics in this forum
- You cannot reply to topics in this forum
- You cannot edit your posts in this forum
- You cannot delete your posts in this forum
- You cannot post attachments in this forum
