Code to call forum title description

TazDevilLooney

Active member
Hi people,

Im trying to call the big bold black description at the top of the page. 'General Support and Questions'
I wish to move this to a diffrent location. There is also a colour i cant figure out how to change. Any idears?

work2.png


I just require the raw code for the discription. The placement is already sorted.
 
I got it to work by moving the arrow from the right to the left.

work7.png


-- Breadcumb code --

Code:
<xen:edithint template="breadcrumb.css" />

<nav>
    <xen:if is="!{$quickNavSelected} AND {$navigation}">
        <xen:foreach loop="$navigation" value="$breadcrumb">
            <xen:if is="{$breadcrumb.node_id}">
                <xen:set var="$quickNavSelected">node-{$breadcrumb.node_id}</xen:set>
            </xen:if>
        </xen:foreach>
    </xen:if>

    <fieldset class="breadcrumb">
        <a href="{xen:link misc/quick-navigation-menu, '', 'selected={$quickNavSelected}'}" class="OverlayTrigger jumpMenuTrigger" data-cacheOverlay="true" title="{xen:phrase open_quick_navigation}"><!--{xen:phrase jump_to}...--></a>

        <div class="boardTitle"><strong>{$xenOptions.boardTitle}</strong></div>

        <span class="crumbs">
            <xen:if is="{$showHomeLink}">
                <span class="crust"{xen:if $microdata, ' itemscope="itemscope" itemtype="[URL]http://data-vocabulary.org/Breadcrumb[/URL]"'}>
                    <a href="{$homeLink}" class="crumb" rel="up" itemprop="url"><span itemprop="title">{xen:phrase home}</span></a>
                    <!-- <span class="arrow"><span></span></span> -->
                </span>
            <xen:elseif is="{$selectedTabId} != {$homeTabId}" />
                <span class="crust"{xen:if $microdata, ' itemscope="itemscope" itemtype="[URL]http://data-vocabulary.org/Breadcrumb[/URL]"'}>
                    <a href="{$homeTab.href}" class="crumb" rel="up" itemprop="url"><span itemprop="title">{$homeTab.title}</span></a>
                <!--    <span class="arrow"><span>   --> </span></span>
                </span>
            </xen:if>

            <xen:if is="{$selectedTab}">
                <span class="crust"{xen:if $microdata, ' itemscope="itemscope" itemtype="[URL]http://data-vocabulary.org/Breadcrumb[/URL]"'}>
                    <a href="{$selectedTab.href}" class="crumb" rel="up" itemprop="url"><span itemprop="title">{$selectedTab.title}</span></a>
                    <!-- <span class="arrow"><span>&gt;</span></span> -->
                </span>
            </xen:if>

            <xen:if is="{$navigation}">
                <xen:foreach loop="$navigation" value="$breadcrumb" i="$i" count="$count">

    <span class="crust"{xen:if $microdata, ' itemscope="itemscope" itemtype="[URL]http://data-vocabulary.org/Breadcrumb[/URL]"'}>

<!-- Changed -->
<a href="{xen:raw $breadcrumb.href}" class="crumb" rel="up" itemprop="url"><span class="arrow2" itemprop="title">{xen:raw $breadcrumb.value}</span></a>
<!-- Changed -->

                        <!--  <span class="arrow"><span>&gt;  </span></span> -->
                    </span>
                </xen:foreach>
            </xen:if>
        </span>
    </fieldset>
</nav>



-- Extra CSS code --

Code:
breadcrumb .crust A.crumb {*margin-left:0px !important;_margin-left:0px !important;}
.arrow2 {background:url(styles/default/xenforo/arrow2.png) no-repeat left;padding-left:10px;}

Whooohoooo :)
 
Thankyou brogan, I do like to try diffrent things. I tryed this on my VB board which took me months to sort out. This was a brease to use. However the upgrade will be the tester. I have keeped 99% of the code in the extra.css which im really happy about. As i say i have some tweeks to do on a few diffrent pages but really not that bad. Might get this up for xmas (I live in hope) :)
 
Top Bottom