Xenith

Xenith 1.5.22.0

No permission to download
On every page see below, I hope you know w I mean @Jake B.
View attachment 122428

It looks like that uses uix_primaryColor. You can change it there, but it'll replace that color everywhere (background colors on callToActions, and quite a few other places). If you just want to change it in the breadcrumb you can use this selector:

Code:
.breadcrumb .crust:last-child a.crumb {
    color: #00bcd4;
}
 
It looks like that uses uix_primaryColor. You can change it there, but it'll replace that color everywhere (background colors on callToActions, and quite a few other places). If you just want to change it in the breadcrumb you can use this selector:

Code:
.breadcrumb .crust:last-child a.crumb {
    color: #00bcd4;
}
Many thanks @Jake B.

Can you help me with advice for my background
www.sjedbb.com
 
Go to uix_welcomeBlock and change everything to
Code:
<div class="uix_welcomeBlock_wrap">
    <div class="uix_welcomeBlock_content">
        <a href="#" class="close"></a>
    
        <xen:if hascontent="true">

        <h3 class="uix_welcomeBlockHeader">
            <xen:contentcheck>
            <xen:if is="{$uix_welcomeBlockIcon_class}"><i class="uix_icon {$uix_welcomeBlockIcon_class}"></i></xen:if>
            <xen:if is="{$uix_welcomeBlockHeader_text}"><span>{xen:raw $uix_welcomeBlockHeader_text}</span></xen:if>
            </xen:contentcheck>
        </h3>
        </xen:if>
    
        <xen:if is="{$uix_welcomeBlockMessage_text}"><p class="uix_welcomeBlockMessage">{xen:raw $uix_welcomeBlockMessage_text}</p></xen:if>
    
        <!-- Start of Modification -->
    
        <xen:if is="!{$visitor.user_id}">
            <xen:if is="{$uix_welcomeBlockButton_url}">
                <a href="{$uix_welcomeBlockButton_url}" class="callToAction">
                    <span>{$uix_welcomeBlockButton_text}</span>
                </a>
            </xen:if>
        </xen:if>

        <!-- End of Modification -->
    
    </div>
</div>

That will remove the Register button to logged in users

Edit : And I'm sure that could be an interesting options to add to UI.X cc @Audentio Design
 
Go to uix_welcomeBlock and change everything to
Code:
<div class="uix_welcomeBlock_wrap">
    <div class="uix_welcomeBlock_content">
        <a href="#" class="close"></a>
   
        <xen:if hascontent="true">

        <h3 class="uix_welcomeBlockHeader">
            <xen:contentcheck>
            <xen:if is="{$uix_welcomeBlockIcon_class}"><i class="uix_icon {$uix_welcomeBlockIcon_class}"></i></xen:if>
            <xen:if is="{$uix_welcomeBlockHeader_text}"><span>{xen:raw $uix_welcomeBlockHeader_text}</span></xen:if>
            </xen:contentcheck>
        </h3>
        </xen:if>
   
        <xen:if is="{$uix_welcomeBlockMessage_text}"><p class="uix_welcomeBlockMessage">{xen:raw $uix_welcomeBlockMessage_text}</p></xen:if>
   
        <!-- Start of Modification -->
   
        <xen:if is="!{$visitor.user_id}">
            <xen:if is="{$uix_welcomeBlockButton_url}">
                <a href="{$uix_welcomeBlockButton_url}" class="callToAction">
                    <span>{$uix_welcomeBlockButton_text}</span>
                </a>
            </xen:if>
        </xen:if>

        <!-- End of Modification -->
   
    </div>
</div>

That will remove the Register button to logged in users

Edit : And I'm sure that could be an interesting options to add to UI.X cc @Audentio Design
Awsome, is it also possible to remove the Welcome Section Message for online users?
 
Code:
<div class="uix_welcomeBlock_wrap">
    <div class="uix_welcomeBlock_content">
        <a href="#" class="close"></a>
   
        <xen:if hascontent="true">

        <h3 class="uix_welcomeBlockHeader">
            <xen:contentcheck>
            <xen:if is="{$uix_welcomeBlockIcon_class}"><i class="uix_icon {$uix_welcomeBlockIcon_class}"></i></xen:if>
            <xen:if is="{$uix_welcomeBlockHeader_text}"><span>{xen:raw $uix_welcomeBlockHeader_text}</span></xen:if>
            </xen:contentcheck>
        </h3>
        </xen:if>
   
        <xen:if is="!{$visitor.user_id}">
        <xen:if is="{$uix_welcomeBlockMessage_text}"><p class="uix_welcomeBlockMessage">{xen:raw $uix_welcomeBlockMessage_text}</p></xen:if>
        </xen:if>
   
        <!-- Start of Modification -->
   
        <xen:if is="!{$visitor.user_id}">
            <xen:if is="{$uix_welcomeBlockButton_url}">
                <a href="{$uix_welcomeBlockButton_url}" class="callToAction">
                    <span>{$uix_welcomeBlockButton_text}</span>
                </a>
            </xen:if>
        </xen:if>

        <!-- End of Modification -->
   
    </div>
</div>

:)
 
Code:
<div class="uix_welcomeBlock_wrap">
    <div class="uix_welcomeBlock_content">
        <a href="#" class="close"></a>
  
        <xen:if hascontent="true">

        <h3 class="uix_welcomeBlockHeader">
            <xen:contentcheck>
            <xen:if is="{$uix_welcomeBlockIcon_class}"><i class="uix_icon {$uix_welcomeBlockIcon_class}"></i></xen:if>
            <xen:if is="{$uix_welcomeBlockHeader_text}"><span>{xen:raw $uix_welcomeBlockHeader_text}</span></xen:if>
            </xen:contentcheck>
        </h3>
        </xen:if>
  
        <xen:if is="!{$visitor.user_id}">
        <xen:if is="{$uix_welcomeBlockMessage_text}"><p class="uix_welcomeBlockMessage">{xen:raw $uix_welcomeBlockMessage_text}</p></xen:if>
        </xen:if>
  
        <!-- Start of Modification -->
  
        <xen:if is="!{$visitor.user_id}">
            <xen:if is="{$uix_welcomeBlockButton_url}">
                <a href="{$uix_welcomeBlockButton_url}" class="callToAction">
                    <span>{$uix_welcomeBlockButton_text}</span>
                </a>
            </xen:if>
        </xen:if>

        <!-- End of Modification -->
  
    </div>
</div>

:)
Thanks guys (y):)
 
On the home page, I have this:

upload_2015-11-24_2-11-16.webp

But I'd like to change the color scheme to the reverse: Orange fill with white text. I assume I need custom CSS, where and how to do this?
 
Back
Top Bottom