Flat Awesome Dark - PixelExit.com [Deleted]

As long as you installed it correctly from the start you won't. All of your edits should be inside a child style of Flat Awesome.

Do you have a child style with your edits in it?

If so... export your style + the parent flat awesome, then just import and overwrite the existing flat awesome.

If not... you'll need to install this update as a brand new style and create a child style. From there you'll need to start porting over your edits to the child style to avoid future headaches.
Thank you for the quick response. So I exported ALL + independent styles. So I am set? I just need to save that file...update the design, and then import it back?

Sorry, I am still learning all of this. Do I just click import a style, once updated?
 
Thank you for the quick response. So I exported ALL + independent styles. So I am set? I just need to save that file...update the design, and then import it back?

Sorry, I am still learning all of this. Do I just click import a style, once updated?
First question did you have your style setup as a child style?

Also never check that export as independent box when exporting styles.
 
Perfect so you have the correct child style setup.

Now export both of your styles to keep as a backup. Next import the new flat awesome overwriting your existing flat awesome style(the parent). All the updates should trickle down to your child style while saving your customizations.
I appreciate the time you took to help me. I guess I did it correctly, as I did not get any errors. Is there anyway to use a logo, as well as the logo text, for the title? Thanks again.
 
Would you want the text like next to a logo image? Right or left of it? Or what exactly are you trying to achieve there
 
Would you want the text like next to a logo image? Right or left of it? Or what exactly are you trying to achieve there
Was thinking of putting the logo, to the left of the text logo. Having them both display beside each other.
 
Was thinking of putting the logo, to the left of the text logo. Having them both display beside each other.

You'll need to edit the logo_block template, don't use the text as logo option so set your logo image in the style properties -> header and navigation. Next just add whatever text you want to the left/right here:

Code:
<img src="@headerLogoPath" alt="{$xenOptions.boardTitle}" />

Inside the logo_block
 
You'll need to edit the logo_block template, don't use the text as logo option so set your logo image in the style properties -> header and navigation. Next just add whatever text you want to the left/right here:

Code:
<img src="@headerLogoPath" alt="{$xenOptions.boardTitle}" />

Inside the logo_block
Thanks Russ. I really appreciate it
 
Hey all. Got 2 issues or things I kinda wanna sort out.
First thing is - my staff tab/page is kinda glitched with this style

b2b0ecf4e093d8e6a9692d93e652754f.png


As you can see there is no styling for the different ranks.

Also one more thing and I believe this is a style icon but I run TaigaChat and I really wanna remove this folder next to it.

21f8b8e8dff2ff9f8f39d255e5eb8692.png


Cheers!
 
Hey all. Got 2 issues or things I kinda wanna sort out.
First thing is - my staff tab/page is kinda glitched with this style

b2b0ecf4e093d8e6a9692d93e652754f.png


As you can see there is no styling for the different ranks.

Also one more thing and I believe this is a style icon but I run TaigaChat and I really wanna remove this folder next to it.

21f8b8e8dff2ff9f8f39d255e5eb8692.png


Cheers!

It looks like you got the titles sorted out, for the icon, I think this will work:

To change it:
Code:
.nodeList.taigachat_alt .categoryStrip .nodeTitle:before
{
   content: "\f075";
}

To hide it just on chat:
Code:
.nodeList.taigachat_alt .categoryStrip .nodeTitle:before
{
   display: none;
}
 
It looks like you got the titles sorted out, for the icon, I think this will work:

To change it:
Code:
.nodeList.taigachat_alt .categoryStrip .nodeTitle:before
{
   content: "\f075";
}

To hide it just on chat:
Code:
.nodeList.taigachat_alt .categoryStrip .nodeTitle:before
{
   display: none;
}
Ah cheers. Do you know how I can remove the .nodeTitle:before on all the nodes like General etc.
 
Does this work with 1.5.11?

EDIT
Ok well I installed it along side the light version and set up the child style. but appears to be a broken link involving pictures, http://prntscr.com/dk0l15 the logo block cant find the logo also the board default avatar was broken to. When I added my own avatar that seems to work.
 
Last edited:
Does this work with 1.5.11?

EDIT
Ok well I installed it along side the light version and set up the child style. but appears to be a broken link involving pictures, http://prntscr.com/dk0l15 the logo block cant find the logo also the board default avatar was broken to. When I added my own avatar that seems to work.

Yes it does, that would indicate you haven't uploaded the style folders to the /styles/ folder on your install.
 
Top Bottom