I am using this theme together with Ubercart 5.x-1.0-rc2 and I have a category (vocabulary) called "Catalog". I created a term under "Catalog" and associated a photo with it. There is a little annoying part where the term's photo is not shown up properly at node example.com/catalog// (pls refer to jpg attached)

CommentFileSizeAuthor
fourseason_bug_report.JPG22.36 KBwkteng
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

wkteng’s picture

sorry, typo in the description: "photo is not shown up properly at node example.com/catalog/ID/term"

derjochenmeyer’s picture

Status: Closed (fixed) » Active

debugging css can be a real hassle... its hard to judge by the screenshot whats happening... here is a tip: use firefox and the firebug plugin.... then you can rightclick and "inspect element".... it'll help you in figuring out whats going wong ... try playing with float, clear:both, position attributes ...

if you post a working link i take a look...

wkteng’s picture

Status: Active » Closed (fixed)

Thanks for recommending such a useful tool! especially for a newbie like me...I've got it solved by adding "clear: both" under "div.tablewrapper" in style.css

div.tablewrapper {
  width:99%;
  overflow:auto;
  clear: both;
}

Status: Active » Closed (fixed)