Blackend - PixelExit.com

Blackend - PixelExit.com 1.5.14

No permission to download

Steve F

Well-known member
Qwk86gn submitted a new resource:

Blackend (version 1.1.3) - Nice easy reading dark style.

Here is a remake of the fairly popular Blackend style I had released for another forum software. The link and text colors can be changed easily through the Color Palette. Updating should be easy as almost all template edits are in the EXTRA.css template.


Installation: Instructions in the README.txt within the download.

Contributers: Shelley for the use of her...

Read more about this resource...
 
  • Like
Reactions: Dan
Love this theme! I was wanting to expand the header for a bigger logo and seemed to get it but some parts are not properly aligned like the text logo below the navbar... Possibly some other things are not adjusted properly...

I changed this in the header.css
/*height: @headerLogoHeight;*/
height: 140px;
Not sure there is an easier way like to make the header height 100% maybe??

http://208.86.251.30/index.php

I am new to xenForo just trying to understand the style's from getting most of my edit idea's from using VB on my main site...
 
Love this theme! I was wanting to expand the header for a bigger logo and seemed to get it but some parts are not properly aligned like the text logo below the navbar... Possibly some other things are not adjusted properly...

I changed this in the header.css
/*height: @headerLogoHeight;*/
height: 140px;
Not sure there is an easier way like to make the header height 100% maybe??

http://208.86.251.30/index.php

I am new to xenForo just trying to understand the style's from getting most of my edit idea's from using VB on my main site...

Revert your changes to the header.css template.

Navigate to: Style Properties -> Header and Navigation -> Settings -> Height of Header Logo: 140px

For future reference use the EXTRA.css template to overwrite any CSS you change so you are not editing the default templates, makes updating a lot easier. ;)

The problem with what you added is there are other elements that depend on the style property "Height of Header Logo" to calculate the height of parent elements in the CSS.
 
Qwk86gn updated Blackend with a new update entry:

Update for XenForo 1.1.4

Simple update for XenForo 1.1.4

  • Footer template updated
New Hook added in XenForo 1.1.4
Code:
            <xen:hook name="footer_after_copyright" />

You can manually update if you wish.
  1. Revert footer template
  2. Follow directions below
Find:
Code:
<div id="copyright">{xen:phrase xenforo_copyright}</div>

Replace with:
Code:
            <div id="copyright">{xen:phrase xenforo_copyright} | Style By: <a...

Read the rest of this update entry...
 
I just installed this style few minutes ago and I really like it. :)

How can I add another logo on the left header?
 
You can use the ad_header template to achieve that. Place the below in there, will probably have to adjust the inline styling a bit for your needs.

Code:
<div style="float: right;">
    <a href="http://YourLink"><img src="PathToImage" alt="Title"></a>
</div>
 
How can I easily increase style contrast a little bit?

I'd like all the gray text to be a little more white. I tried changing few color settings but it doesn't work.

Thanks
 
Thanks Qwk86gn :)

Two more questions and hopefully the last ones... ;)

How can I change the background colors of the quotes?
How can I change the text color of the progression bar showed when uploading a file?

Sorry for all those questions but I'm kind of new at optimizing the style to me needs.
 
Thanks Qwk86gn :)

Two more questions and hopefully the last ones... ;)

How can I change the background colors of the quotes?
How can I change the text color of the progression bar showed when uploading a file?

Sorry for all those questions but I'm kind of new at optimizing the style to me needs.

Never mind, I've found the solution

Thanks
 
1. Style Properties -> BB Code Elements -> BB Code Quote Message

2. Use this in the EXTRA.css template

Code:
.AttachmentEditor .AttachedFile .ProgressMeter .ProgressGraphic
{
    background: @primaryMedium !important;
}

;)

Edit: That'll teach me to go afk and not refresh the thread..:whistle:
 
Top Bottom