Top resources widget does not show .userTitle

Discussion in '[bd] Widget Framework' started by HenrikHansen, Mar 8, 2014.

  1. HenrikHansen

    HenrikHansen Member

    My "top resources" widget does not show content in div ".usertitle" but my "new resources" widget shows it okay ? What might cause this?
     
  2. xfrocks

    xfrocks XenForo rocks!
    Staff Member

    Can you take a screenshot and html?
     
  3. HenrikHansen

    HenrikHansen Member

    Board is closed (but now reopened), but please have a look top right column here: www.usanet.dk.
    As far as I can see in HTML, it has not been hided by css or something.
     
  4. xfrocks

    xfrocks XenForo rocks!
    Staff Member

    I think your template has been customized. Can you try reverting the template wf_widget_xfrm_resources?
     
    1. HenrikHansen

      HenrikHansen Member

      HenrikHansen @xfrocks I have checked, it is not customized. But I have
      .ratings
      {
      display: none;
      }

      in extra.css. Is it suppose to show resource author anyway? When I delete this, this widget shows the rating stars below the source title.
       
  5. xfrocks

    xfrocks XenForo rocks!
    Staff Member

    Ah no, for different mode, it shows differently. For top resources, it shows rating.
     
    1. HenrikHansen

      HenrikHansen Member

      HenrikHansen @xfrocks Hmm, in that case there is nothing wrong. Then it is the css code that is doing it.

      Can I change the css code so it shows ratings in widgets but not on resource main site?
       
    2. xfrocks

      xfrocks XenForo rocks!
      Staff Member

      xfrocks @HenrikHansen Yes, you can but hiding .rating is quite inconvenience because that class is used in a lot of place. My suggestion is you only hide .rating in resource main page and let it work everywhere else. To do this, use this in your EXTRA.css

      Code:
      .resource_index .ratings { display: none; }
      #resourceInfo .ratings { display: none; }
       
Loading...