Hi

I love this theme and keep up the good work... The green-blue colors are my favorite and it gives the site good appeal , while keeping professional look.

I noticed that after installing the theme I am gettting a huge blank section between title and main node content. http://www.pmptalk.com/drp/ see the space betwen banner and the block... the same appears on all pages..like http://www.pmptalk.com/drp/taxonomy/vocabulary/2 .

Thanks for your help

CommentFileSizeAuthor
#10 query.zip2.95 KBpmeenakshi

Comments

Mad Maks’s picture

Assigned: Unassigned » Mad Maks

i don't see it on your frontpage, only on a page like http://www.pmptalk.com/drp/taxonomy/vocabulary/2. can you tell me witch module do you use for that page.

taherk’s picture

I am using links package.... but it appears on all pages, where it displays Taxonomy vocabulary ( Using taxonomy_context contributed module)
http://pmptalk.com/drp/taxonomy/vocabulary/1
http://pmptalk.com/drp/taxonomy/vocabulary/2
http://pmptalk.com/drp/taxonomy/vocabulary/3 etc.

The blank space also appears between the title of the block and the content. I have a block "Sponsor links" in the "content" area and between the title and the ads there is a blank space.

paddy_deburca’s picture

The problem seems to be in /drp/modules/taxonomy_context/taxonomy_context.css. There is a class defined called clearit.

.clearit {
  clear: both;
}

The DIV used to create your content looks like the following:

<div><p>Browse through some good quality books</p></div>
<div class="clearit"></div>
<div class="subterm-container">
  <div class="subterm">
     <h2 class="title"><a href="/drp/taxonomy/term/36">Quality Books</a></h2>
     <div class="description">Books related to Quality concepts, Quality philosophy etc</div>
  </div>
</div>

Notice the <div class="clearit"></div>?

Please update your /drp/modules/taxonomy_context/taxonomy_context.css with the following

.clearit {
  clear: none;
}

Paddy.

taherk’s picture

Awesome!!!.... It would have taken me long time to figure this out... THanks a lot!

Mad Maks’s picture

Thanks paddy for confirming. i have added it to the module.css. please check out the cvs version when it is updated to confirm the fix.

paddy_deburca’s picture

The problem with making any changes to module.css is that module.css is imported before the taxonomy_context.css, and so CSS in taxonomy_context.css may over ride CSS definitions in module.css.

Making a definition such as

.content .clearit {
  clear: none;
}

may work as it is more specific than just the generic .clearit {}

The question begs to be asked - is this a taxonomy_content problem?

Paddy.

mudanoman’s picture

This problem also occurs with image_attach module. Where image_attach.css has -> .node {
clear: both;
}

changed to 'none' and works great.

blackrain’s picture

I am facing the same thing which include my contact form (the body box jumps to bottom of page) and create page. However i can not find /drp/modules/taxonomy_context/taxonomy_context.css. any where, help please.

paddy_deburca’s picture

Can you give an example? A link to a web site?

Paddy.

pmeenakshi’s picture

Title: Blank space between title and body » Blank space on the web page between fields
Version: 4.7.x-1.x-dev » 4.6.x-1.x-dev
StatusFileSize
new2.95 KB

Hi,

I see a lot of blank space on my web page, and i tried using the trick from a posted solution on the drupla site. I changed the clear class from " clear: both;" to " clear: none;". The spaces still seem to appear.

The site link is http://ie-issues.vrsn.com/portal. The spacse are seen on:

http://ie-issues.vrsn.com/portal/?q=aggregator
http://ie-issues.vrsn.com/portal/?q=node/182/edit
http://ie-issues.vrsn.com/portal/?q=node/add/forum/0

Would anyone have some ideas on this?

Thanks,
Meenakshi.

Mad Maks’s picture

Version: 4.6.x-1.x-dev » 5.x-1.0

in drupal 5 the modules.css is loaded after the module specific css so the fix in that file is used now (i hope)

Mad Maks’s picture

Status: Active » Closed (fixed)