Jump to content
jannon

Too much space below page title

Recommended Posts

jannon

I'm trying to reduce the space below the page title and where the directory begins. I used firebug and when I highlight the area, it looks like it is called div class="entry_wrap fix" but when I try to change that in my css by using either .entry_wrap or .entry_wrap fix with padding-top: 0px or margin-top:0px, nothing happens. Which id or class should I be using.

Here is a link to the page: http://www.whidbeylifemagazine.org/visual-directory/

Share this post


Link to post
Share on other sites
mackenzie

You will probably need to adjust the following section of code to remove the large amount of space:

.post-meta {

   margin-bottom: 1.71em;

}


Mackenzie - PageLines Help Desk

The Centsible Family - Writer, Photographer and Coffee Addict

---------------------------------------------------

Kindly search this forum and read the documentation before posting. It will help you resolve many issues.

For CSS help be sure to check out W3Schools first and be sure to download FireBug for FireFox for troubleshooting.

Share this post


Link to post
Share on other sites
jannon

Thanks Mackenzie,

Unfortunately it didn't work either, no change. Any other ideas?

Share this post


Link to post
Share on other sites
batman

Please you can try with

.post-meta {margin-bottom: 0.25em;}

modify #em as you like


Life is too short to remove USB safely ...

Share this post


Link to post
Share on other sites
jannon

Actually, I tried everything down to 0em, no difference and I've added !important but still nothing changes.

Share this post


Link to post
Share on other sites
Rob

Whatever is affecting entry_wrap fix is causing this. I don't know how this directory is being created, but likely that's the source. If you use Firebug to view it, you can see that the element which includes an individual directory entry has a huge gap of space above it.

I've looked extensively and cannot find the CSS so likely it's embedded in the plugin you're using, potentially hard coded in there. Admittedly, I have rarely seen this happen. However, if you look, you'll see for the heading Linnane...


<form id="wpv-filter-1" class="wpv-filter-form" method="GET" action="http://www.whidbeylifemagazine.org/visual-directory/" style="margin:0; padding:0;">

Which evidences that they are hardcoding.

If you're using a plugin, I think you need to show this to the plugin developer and ask their assistance in identifying the cause of that gap.


Former PageLines Moderator, Food Expert and Raconteur

Share this post


Link to post
Share on other sites
micheldv

My 2 cents

 

I have seen the same topic somewhere else so here the response : 

.post-meta {margin-bottom: 0px;}[/code]

Share this post


Link to post
Share on other sites
Danny

Hi,

 

If I understand you correctly, you're trying to reduce the space between the directory listing title and the information from the previous directory listing?

 

If this is correct, please use the following CSS, which reducing the space so that it looks like this:

 

http://d.pr/i/ABYy

 

#site .member-title {
margin-top: 25px;
}

Please search our forums, before posting!

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×