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.

How to get the ribbon on images?

Discussion in 'Showcase Support' started by surfsup, Apr 16, 2014.

  1. surfsup

    surfsup New Member Showcase

  2. Bob

    Bob Developer Staff Member

    you need to upload the showcase images into your custom styles image path.

    It is looking for the image HERE: styles/truckmountforums/nflj/showcase/icons/featured3.png

    when it is stored here: styles/default/nflj/showcase/icons/featured3.png

    easiest way to do this is to drop the /styles/default/nflj FOLDER from the zip file directly into /styles/truckmountforums
     
    surfsup likes this.
  3. surfsup

    surfsup New Member Showcase

    Thank you.

    One last question, since I made the upgrade from 1.3.1 to 2.0 stable, our categories are greyed out - how can I change it back to black text in the right column?
     
  4. Bob

    Bob Developer Staff Member

    add this to your EXTRA.css template for your custom style.

    HTML:
    .showcaseCategoryList .count {
        color: #000000 !important;
    }
     
    surfsup likes this.
  5. surfsup

    surfsup New Member Showcase

    Hmm....still no go...
     
  6. Bob

    Bob Developer Staff Member

    works for me. Are you sure you put it in the correct style?
     
  7. Bob

    Bob Developer Staff Member

    Im looking at your site right now and the COUNT numbers in the right hand column ARE changed to black using the above CSS. I DO see an issue however. Need to wrap the block in a div with the section class...

    Try this...

    Edit template: nflj_showcase_index_sidebar

    FIND:
    HTML:
            <div class="secondaryContent showcaseCategoryList">
                <h3>{xen:phrase nflj_showcase_categories}</h3>
                <xen:if is="{$categories}">
                    <ol>
                    <xen:foreach loop="$categories" value="$_category">
                        <li class="{xen:if '{$_category.category_id} == {$selectedCategoryId}', selected}">
                            <a href="{xen:link showcase/category, $_category}" {xen:if $_category.category_description, 'title="{xen:helper striphtml, $_category.category_description}" class="Tooltip" data-tipclass="showcaseCategoryTooltip"'}>{$_category.category_name}</a>
                            <span class="count">{xen:number $_category.item_count}</span>
                        </li>
                    </xen:foreach>
                    </ol>
                <xen:else />
                    <div>{xen:phrase nflj_showcase_no_categories}</div>
                </xen:if>
            </div>
    Replace with:
    HTML:
        <div class="section">
            <div class="secondaryContent showcaseCategoryList">
                <h3>{xen:phrase nflj_showcase_categories}</h3>
                <xen:if is="{$categories}">
                    <ol>
                    <xen:foreach loop="$categories" value="$_category">
                        <li class="{xen:if '{$_category.category_id} == {$selectedCategoryId}', selected}">
                            <a href="{xen:link showcase/category, $_category}" {xen:if $_category.category_description, 'title="{xen:helper striphtml, $_category.category_description}" class="Tooltip" data-tipclass="showcaseCategoryTooltip"'}>{$_category.category_name}</a>
                            <span class="count">{xen:number $_category.item_count}</span>
                        </li>
                    </xen:foreach>
                    </ol>
                <xen:else />
                    <div>{xen:phrase nflj_showcase_no_categories}</div>
                </xen:if>
            </div>  
        </div>

    Then for the CATEGORY Sidebar...

    edit template: nflj_showcase_category_sidebar

    FIND:
    HTML:
            <div class="secondaryContent showcaseCategoryList">
                <h3>{xen:phrase nflj_showcase_categories}</h3>
                {xen:raw $categorySidebarHtml}
            </div>
    REPLACE WITH:
    HTML:
        <div class="section">
            <div class="secondaryContent showcaseCategoryList">
                <h3>{xen:phrase nflj_showcase_categories}</h3>
                {xen:raw $categorySidebarHtml}
            </div>
        </div>
     
  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.