Space below menu in homepage

Posted in: Newspaper
Post count: 95

Hi. I have this space below menu in homepage.

How to change it and show a shorter distance, more up ? The same issue for footer, seems too large distace from last widget to footer.

Please, codes for both ? Thank you.

Post count: 95

Also, for not making another post… what settings to use in SETTINGS – MEDIA ?

Thumbnail size:
– Width
– Height
Medium size:
– Max Width
– Max Height
Large size:
– Max Width
– Max Height

Post count: 555

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

Post count: 95

The suggested settings add too close to the top and no change to footer. I change values I don’t like it either.

tried also

.home .td-grid-wrap {
margin: -30px 0px 0px 0px;
}

adds better but is making footer broken. I need another solution.

Post count: 555

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;
}

  • This reply was modified 11 years by Steven.
  • This reply was modified 11 years by Steven.
Post count: 95

I played with your values, it didn’t satiesfied me… also footer code is not changing anything. Thank you, anyway ! I’ll wait.

Post count: 95

Steven, using those settings in media is not making other image sizes except the ones created by theme ? That would be great.

Post count: 388

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. 🙂

Post count: 95

I wish I can keep it private, if possible…

Post count: 388

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.

Post count: 95
/* 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;
  }
Post count: 95
/* 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.
Post count: 388

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.

Post count: 95

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)

Post count: 95

* Shows that bug if you have a long title. Checked with short titles, no issues, just with long ones.

Post count: 95

devs. reply:

.page .td-page-wrap .td-grid-wrap{
padding-top: 5px;
}

thank you. And for footer ?

  • This reply was modified 11 years by cstyn.
Post count: 6600

Hi,

Replied via dashboard!
Thanks for the message!

Viewing 17 posts - 1 through 17 (of 17 total)
You must be logged in to reply to this topic.