1. REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

Changing css on the sidebar widget

Discussion in 'Showcase Support' started by TitanJeff, May 30, 2013.

  1. TitanJeff

    TitanJeff Member Showcase Pickem Sportsbook Survivor

    http://www.talkfranklin.com

    On my sidebar widget which says "Ratings" I was wondering if I could change some of the text such as:

    Make the title of the item bold
    Remove the link to the date submitted (like the classifieds block below it)

    All the css I tinker with screws up all the link colors. :)
     
  2. Bob

    Bob Developer Staff Member

    I've added CSS Classes in that Block so that you can add custom CSS to EXTRA.css.

    I've pasted in some of the HTML from that template to show the custom classes that you can use.

    first is the class scfhtabcontainer on the UL which controls everything within the UL.

    next is scfhDL which controls the DL's
    next is scfhDt which controls the DT's
    next is scfhDd which controls the DD's

    #scfhtabcontainer .scfhDt a {font-weight: bold;} for example will bold the title



    HTML:
                <ul id="scfhtabcontainer">
                    <xen:if is="{$featuredItems}">
                        <li>
                            <div style="padding-top:10px;">         
                                <dl class="scfhDL"> 
                                    <xen:foreach loop="$featuredItems" value="$featuredItem">
                                        <dt style="margin-top:5px;" class="scfhDt">
                                            <a href="{xen:link showcase, $featuredItem}">{xen:helper snippet, $featuredItem.item_name, 40}</a>
                                        </dt>
                                        <dd class="muted" class="scfhDd">
                                            <xen:username user="$featuredItem" />,</span> <a href="{xen:link showcase, $featuredItem}" class="faint"><xen:datetime time="$featuredItem.date_added" /></a>, <span><a href="{xen:link showcase-category, $featuredItem}">{$featuredItem.category_name}</a>
                                        </dd>
                                    </xen:foreach>             
                                </dl>
                            </div>
                        </li>             
                    </xen:if>
     
  3. TitanJeff

    TitanJeff Member Showcase Pickem Sportsbook Survivor

    Thanks for posting this. It's a bit beyond my abilities but I'm going to study up and see if I can figure it out.
     
  4. Bob

    Bob Developer Staff Member

    add this to extra.css

    .scfhDt a {font-weight: bold;}
     
  5. TitanJeff

    TitanJeff Member Showcase Pickem Sportsbook Survivor

    Hmmm... didn't work.

    .scfhDt a {
    font-weight: bold;
    }

    I added an !important to it as well.
     
  6. Bob

    Bob Developer Staff Member

    did you add it to the right style?

    btw, you don't need !important as it is its own class and not a class that is being overridden.
     
  7. TitanJeff

    TitanJeff Member Showcase Pickem Sportsbook Survivor

    Good tip on the !important

    It's in my active default style's EXTRA.css. I put it in the xenforo default as well.
     
  8. Bob

    Bob Developer Staff Member

    Ah, your template doesn't have the new Classes...

    you will need to edit the template itself and add the class name like below to the dt tags.

    template name: nflj_showcase_sidebar_tabbed_items

    <dt style="margin-top:5px;" class="scfhDt">
     
  9. Bob

    Bob Developer Staff Member

    If you can't figure out how to add the class, just let me know and I will do it for ya. its part of changes for the next version of SC.
     
  10. TitanJeff

    TitanJeff Member Showcase Pickem Sportsbook Survivor

    Yeah. I tried to figure out both how to bold the title and remove the link from the date within the template you listed with no success.

    I did...
    <dt style="margin-top:5px;" font-style="bold;" class="scfhDt">
    ...each time it was listed.
     
  11. Bob

    Bob Developer Staff Member


    send me an inbox here or at xf.com with login credentials (make sure I have full administrative permissions so that I can edit templates) and I will do it for you and then you can look and see how I did it.
     
  12. TitanJeff

    TitanJeff Member Showcase Pickem Sportsbook Survivor

    Will do. Thanks.
     
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.