YAFLogo

pedroliska
  • pedroliska
  • 55.4% (Neutral)
  • YAF Forumling Topic Starter
14 years ago
I downloaded version 1.9.4 (beta and RC1) to get the Clean Slate theme and I installed it (copy pasted the folder and xml file) on my 1.9.3 installation of YAF.

But the Orange background that looks with two different shades of orange on forum.yetanotherforum.net looks just like plain orange (no shades) on my installation.

Did I do something wrong when installing it? is it because it is a 1.9.4 theme running on a 1.9.3? Did I not get the theme from the right place?

I really like this theme so any help would be appreciated!

Thank you,

Sponsor
logan
  • logan
  • 100% (Exalted)
  • YAF Leader
14 years ago
The backgound image you need was added after RC1 release

You can get the updated theme.css and the image(titlebg.jpg)from the SVN - Here 


test
pedroliska
  • pedroliska
  • 55.4% (Neutral)
  • YAF Forumling Topic Starter
14 years ago
That worked! Thank you logan!
pedroliska
  • pedroliska
  • 55.4% (Neutral)
  • YAF Forumling Topic Starter
14 years ago
And if someone else is also trying to run the theme on 1.9.3, you'll also want to get the latest /resources/forum.css mostly because this lines changed:

---- NEW

.yafnet #yafprofilecontent

{

margin: 5px 0px 5px 0px;

width: 80%; float:right;

}

---- OLD

.yafnet #yafprofilecontent

{

margin: 5px 0px 5px 0px;

float: left;

}

And you'll also want to add the following lines to /themes/cleanslate/theme.css

.yafnet tr.header1 a {

color: #000000;

}

.yafnet a.yafcssbigbutton

{

float:right;

}

After that things are looking good. I have not spotted any other things that look weird.

pedroliska
  • pedroliska
  • 55.4% (Neutral)
  • YAF Forumling Topic Starter
14 years ago
I also had to edit the Modal Popup section in the theme.css file

/*Modal Popup*/

/* this is the original cleanSlate code

.modalInner

{

text-align:center;

display:block;

font-weight:bold;

}

.modalOuter

{

margin:10px;

display:block;

}

*/

/* this is a modified version of the yafvision theme */

.modalBackground

{

background-color:#000;

filter:alpha(opacity=80);

opacity:0.8;

}

.modalPopup

{

background-color: #ffffff;

border: solid 1px #aaaaaa;

width: 400px;

padding: 1px;

}

.modalPopup .modalBase

{

}

.modalPopup .modalHeader

{

background-image: url('titlebg.jpg');

background-color: #EE6943;

color: #FFFFFF;

font-weight: bold;

line-height: 22px;

font-size:10.5pt;

padding: 5px;

}

.modalPopup .modalInner

{

padding: 10px;

text-align:center;

}

.modalPopup .modalInnerMain

{

font-size: 9pt;

font-weight: bold;

color: #992222;

text-align: center;

}

.modalPopup .modalInnerSub

{

font-size: 8pt;

color: #333333;

text-align: center;

}

.modalPopup .modalFooter

{

background-image: url('bg_footer1.png');

padding: 5px;

line-height: 28px;

}

.modalPopup .modalFooter input

{

display:block;

vertical-align: middle;

margin:0 auto;

}