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
| Comment | File | Size | Author |
|---|---|---|---|
| #10 | query.zip | 2.95 KB | pmeenakshi |
Comments
Comment #1
Mad Maks commentedi 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.
Comment #2
taherk commentedI 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.
Comment #3
paddy_deburca commentedThe problem seems to be in /drp/modules/taxonomy_context/taxonomy_context.css. There is a class defined called clearit.
The DIV used to create your content looks like the following:
Notice the
<div class="clearit"></div>?Please update your /drp/modules/taxonomy_context/taxonomy_context.css with the following
Paddy.
Comment #4
taherk commentedAwesome!!!.... It would have taken me long time to figure this out... THanks a lot!
Comment #5
Mad Maks commentedThanks 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.
Comment #6
paddy_deburca commentedThe 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
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.
Comment #7
mudanoman commentedThis problem also occurs with image_attach module. Where image_attach.css has -> .node {
clear: both;
}
changed to 'none' and works great.
Comment #8
blackrain commentedI 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.
Comment #9
paddy_deburca commentedCan you give an example? A link to a web site?
Paddy.
Comment #10
pmeenakshi commentedHi,
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.
Comment #11
Mad Maks commentedin drupal 5 the modules.css is loaded after the module specific css so the fix in that file is used now (i hope)
Comment #12
Mad Maks commented