For ur first question..here is the CSS code as follow..
.home .td-page-title {
margin: 0px 0px 0px 0px;
}.home .td-grid-wrap {
padding: 0px 0px 0px 0px !important;
}
You can check my site @ http://jahliveradio.com and see the code work
2nd question
Every one do things different for there site like my self,i don’t use all those because they make too many images from the WP end..
My settings for my site as follow…
Thumbnail size 0 by 0
Medium size 700 by 357
Large size 0 by 0
you just have to play with it to till ur happy with the results…you have to use all the codes i give you not just one..
You ask to removed that white space well that’s what both those first codes do that i give you..if you want it different then wait to monday to a staff member can help you..
CSS code for footer as follow…
.td-footer-wrap .td-grid-wrap {
padding: 0px !important;
}
cstyn, if you link to your website, it will be much easier for us to come up with the exact css you need because then we can see it as we work. 🙂
Well, then, just guessing:
Your footer is broken because td-grid-wrap is the same class used for the footer. What selects the page one is the .td-page-wrap container. What you should be doing is
/* Using specific sides to avoid changing side padding */
.td-page-wrap .td-grid-wrap {
padding-top: 0px !important;
padding-bottom: 0px !important;
}
Adjust as needed.
If it’s not high enough or too high, there are other elements in the way. For example, the page title, as Steven suggested:
.td-page-title {
margin: 0px !important;
}
The footer’s td-grid-wrap is contained in .td-footer-wrap rather than .td-page-wrap, if you want to adjust that.
You can add negative margins the same way if you need to tighten gaps even further, but for widening them I suggest sticking with padding rather than margin.
/* Using specific sides to avoid changing side padding */
.td-page-wrap .td-grid-wrap {
padding-top: 20px !important;
padding-bottom: 0px !important;
}
result 🙂 http://i61.tinypic.com/fuauxd.png Thanks,
Footer, doesn’t change.
http://i60.tinypic.com/2emcy1t.png
.td-footer-wrap {
padding-top: 20px !important;
padding-bottom: 20px !important;
}
/* Using specific sides to avoid changing side padding */
.td-page-wrap .td-grid-wrap {
padding-top: 20px !important;
padding-bottom: 120px !important;
}
Using for footer high values is creating more space… adding negative, does not make any change…
-
This reply was modified 11 years by
cstyn.
If you want that space between the grid and the footer to be removed, don’t add padding on top of .td-footer-wrap! Use a negative margin for .td-grid-wrap. The extra space probably comes from .wpb_row .row-fluid in your image (used for blocks and modules and such), but adjusting that would adjust all the rows.
I wait from devs for a proper code (header and footer).
Also, noted in opera a bug, with or without a code.
http://i61.tinypic.com/mlgso4.png
In breadcrumbs if you have a subcategory, the breadcrumbs will go up as in the screen. (I have a red colored menu and DEFAULT SITE POST TEMPLATE style 5)
