Welcome, Guest. Please login or register.

ShoutBox!

 

Skhilled

2024-03-24, 09:52:09
It may be released as early as today...if we all agree on it. ;)
 

Skhilled

2024-03-24, 09:37:46
Thank you, sir!  :)
 

Ken

2024-03-24, 09:28:38
I like it. Dark themes are not my first choice, but I like the crisp, clean lines.  :thumbup:
 

Skhilled

2024-03-24, 08:56:28
The original theme is here:

https://www.jpr62.com/demos/index.php
 

Skhilled

2024-03-24, 08:53:17
You can always see the latest previews here but registration is disabled:

https://skhilled.com/cztest/index.php
 

Ken

2024-03-24, 08:50:36
Any previews yet?
 

Skhilled

2024-03-24, 08:46:18
We almost have another theme completed.  :laugh:
 

Skhilled

2024-03-24, 08:45:18
What's up, bro?  :drinking:
 

Ken

2024-03-24, 08:42:45
Hi Steve.  :)
 

Skhilled

2024-02-21, 21:11:25
I missed that one. LOL

Recent Topics

TP Articles


Search in titles
Search in article texts

Author Topic: Honoring Crip  (Read 13622 times)

0 Members and 1 Guest are viewing this topic.

Offline Ken (OP)

  • Vietnam Era Veteran
  • Administrator
  • *
  • Posts: 11658
  • Gender: Male
  • View Gallery
Honoring Crip
« on: April 08, 2019, 02:48:07 PM »
Honoring Crip(Jeff)

Earlier Steve posted about Updating Crip Zone Themes and that reminded me that we didn't have any of Jeff's themes installed here on OFF, so me installed the Ornament Theme. And, Jeff's B-Day is coming up soon (June 12) and to give him some props we're going to rock this one for a while.  :thumbup:

BTW... I think that all of our custom graphics are in their place for this theme, but if you see something that is amiss please let me know.
"Not all who wander are lost."-Tolkien
Yesterday When I was Young.

Offline Skhilled

  • Administrator
  • *
  • Posts: 8972
  • Gender: Male
  • All of my passwords are protected by amnesia...
  • View Gallery
    • Buildz Hosting
Re: Honoring Crip
« Reply #1 on: April 12, 2019, 07:40:39 AM »
Btw, you are missing some images on the error page, prolly theme related.

Offline Ken (OP)

  • Vietnam Era Veteran
  • Administrator
  • *
  • Posts: 11658
  • Gender: Male
  • View Gallery
Re: Honoring Crip
« Reply #2 on: April 12, 2019, 10:17:40 PM »
What's missing Steve? Looks OK to me?
"Not all who wander are lost."-Tolkien
Yesterday When I was Young.

Offline Skhilled

  • Administrator
  • *
  • Posts: 8972
  • Gender: Male
  • All of my passwords are protected by amnesia...
  • View Gallery
    • Buildz Hosting
Re: Honoring Crip
« Reply #3 on: April 12, 2019, 10:35:31 PM »
Looks ok now.

Btw, if you add the following code to index.css it will should move the avatar at the top up a bit so you can see it all. Currently, a portion of it at the bottom is hidden behind the menu bar.

Code: [Select]
#userarea .avatar {
    margin-top: -25px;
}

Offline Ken (OP)

  • Vietnam Era Veteran
  • Administrator
  • *
  • Posts: 11658
  • Gender: Male
  • View Gallery
Re: Honoring Crip
« Reply #4 on: April 12, 2019, 10:41:03 PM »
Looks ok now.

Btw, if you add the following code to index.css it will should move the avatar at the top up a bit so you can see it all. Currently, a portion of it at the bottom is hidden behind the menu bar.

Code: [Select]
#userarea .avatar {
    margin-top: -25px;
}

OK... gonna do that now.
"Not all who wander are lost."-Tolkien
Yesterday When I was Young.

Offline Ken (OP)

  • Vietnam Era Veteran
  • Administrator
  • *
  • Posts: 11658
  • Gender: Male
  • View Gallery
Re: Honoring Crip
« Reply #5 on: April 12, 2019, 10:52:34 PM »
Umm... me must had not did it correctly.

I installed the code at the end of:
Code: [Select]
/home/ourfamil/public_html/FamilyForum/Themes/ornament/css
"Not all who wander are lost."-Tolkien
Yesterday When I was Young.

Offline Skhilled

  • Administrator
  • *
  • Posts: 8972
  • Gender: Male
  • All of my passwords are protected by amnesia...
  • View Gallery
    • Buildz Hosting
Re: Honoring Crip
« Reply #6 on: April 12, 2019, 10:57:02 PM »
right place but maybe I did it wrong. One sec...

Offline Skhilled

  • Administrator
  • *
  • Posts: 8972
  • Gender: Male
  • All of my passwords are protected by amnesia...
  • View Gallery
    • Buildz Hosting
Re: Honoring Crip
« Reply #7 on: April 12, 2019, 11:00:29 PM »
I was wrong. Delete that code. Find the following code in line 3603:

Code: [Select]
#userarea {
    text-align: right;
    color: #FFF;
}

And change it to this:

Code: [Select]
#userarea {
    text-align: right;
    color: #FFF;
    margin-top: -25px;
}

Offline Ken (OP)

  • Vietnam Era Veteran
  • Administrator
  • *
  • Posts: 11658
  • Gender: Male
  • View Gallery
Re: Honoring Crip
« Reply #8 on: April 12, 2019, 11:14:38 PM »
Not finding that code. My brain is fried for now, I'll look at it again in the AM.

g'night
"Not all who wander are lost."-Tolkien
Yesterday When I was Young.

Offline Skhilled

  • Administrator
  • *
  • Posts: 8972
  • Gender: Male
  • All of my passwords are protected by amnesia...
  • View Gallery
    • Buildz Hosting
Re: Honoring Crip
« Reply #9 on: April 12, 2019, 11:18:54 PM »
Damn, lol. Just looking in the style editor section and you didn't place the code correctly. You put the code in like this which would actually be mixed in with the footer code above...notice the two closing brackets at the end:

Code: [Select]
#footerarea a:hover {
color: #AFAC83;
text-decoration: underline;

#userarea .avatar {
    margin-top: -25px;
}
}

It should have been like this:

Code: [Select]
#footerarea a:hover {
color: #AFAC83;
text-decoration: underline;
}
#userarea .avatar {
    margin-top: -25px;
}
« Last Edit: April 12, 2019, 11:58:00 PM by Skhilled »

Offline Ken (OP)

  • Vietnam Era Veteran
  • Administrator
  • *
  • Posts: 11658
  • Gender: Male
  • View Gallery
Re: Honoring Crip
« Reply #10 on: April 13, 2019, 12:58:11 PM »
 :opps: hate it when that happens.

Not doing so good today, this will have to wait.
"Not all who wander are lost."-Tolkien
Yesterday When I was Young.

Offline Skhilled

  • Administrator
  • *
  • Posts: 8972
  • Gender: Male
  • All of my passwords are protected by amnesia...
  • View Gallery
    • Buildz Hosting
Re: Honoring Crip
« Reply #11 on: April 13, 2019, 06:16:33 PM »
I've not been doing good with the theme. LOL I get so close but so far.

Offline Ken (OP)

  • Vietnam Era Veteran
  • Administrator
  • *
  • Posts: 11658
  • Gender: Male
  • View Gallery
Re: Honoring Crip
« Reply #12 on: April 26, 2019, 04:18:56 AM »
Just changed the forums theme from Jeff's Ornament theme to his ClearWhite theme, we will likely run this one until Jeff's BD in June... I've always much preferred themes that have lighter colors, thus the change.

Need to get all of our images installed now. The bottom of the OFF logo is being chopped off, need to find out where to add space so that it will show all of the image.
"Not all who wander are lost."-Tolkien
Yesterday When I was Young.

Offline Skhilled

  • Administrator
  • *
  • Posts: 8972
  • Gender: Male
  • All of my passwords are protected by amnesia...
  • View Gallery
    • Buildz Hosting
Re: Honoring Crip
« Reply #13 on: April 26, 2019, 11:40:51 AM »
Around line 3642 in index.css find:

Code: [Select]
#logo a {
    position: absolute;
    margin: 2em 2em 1em;
    display: block;
    float: left;
    width: 386px !important;
    height: 47px !important;
    cursor: pointer;
    background: url(../images/id/smlogo.png) no-repeat;

Replace with:

Code: [Select]
#logo a {
    position: absolute;
    margin: 2em 2em 1em;
    display: block;
    float: left;
    width: 386px !important;
    height: 65px !important;
    cursor: pointer;
    background: url(../images/id/smlogo.png) no-repeat;

Only the height code has been edited to give it more space.

Offline Ken (OP)

  • Vietnam Era Veteran
  • Administrator
  • *
  • Posts: 11658
  • Gender: Male
  • View Gallery
Re: Honoring Crip
« Reply #14 on: April 26, 2019, 12:24:39 PM »
Around line 3642 in index.css find:

Code: [Select]
#logo a {
    position: absolute;
    margin: 2em 2em 1em;
    display: block;
    float: left;
    width: 386px !important;
    height: 47px !important;
    cursor: pointer;
    background: url(../images/id/smlogo.png) no-repeat;

Replace with:

Code: [Select]
#logo a {
    position: absolute;
    margin: 2em 2em 1em;
    display: block;
    float: left;
    width: 386px !important;
    height: 65px !important;
    cursor: pointer;
    background: url(../images/id/smlogo.png) no-repeat;

Only the height code has been edited to give it more space.

Works.
You are jut to dang cool for words!  :drinking:
"Not all who wander are lost."-Tolkien
Yesterday When I was Young.

Offline Skhilled

  • Administrator
  • *
  • Posts: 8972
  • Gender: Male
  • All of my passwords are protected by amnesia...
  • View Gallery
    • Buildz Hosting
Re: Honoring Crip
« Reply #15 on: April 30, 2019, 07:43:07 AM »
The only problem I see, so far, is part of the "page created..." is cut off at the bottom. To fix it find line: 3791:

Change this:

Code: [Select]
margin: -5em 5px 0;
To this:

Code: [Select]
margin: -5em 5px 20px 0;

Offline Ken (OP)

  • Vietnam Era Veteran
  • Administrator
  • *
  • Posts: 11658
  • Gender: Male
  • View Gallery
Re: Honoring Crip
« Reply #16 on: April 30, 2019, 07:50:44 AM »
The only problem I see, so far, is part of the "page created..." is cut off at the bottom. To fix it find line: 3791:

Change this:

Code: [Select]
margin: -5em 5px 0;
To this:

Code: [Select]
margin: -5em 5px 20px 0;

Thanks for the code Steve, gonna try it now.
"Not all who wander are lost."-Tolkien
Yesterday When I was Young.

Offline Ken (OP)

  • Vietnam Era Veteran
  • Administrator
  • *
  • Posts: 11658
  • Gender: Male
  • View Gallery
Re: Honoring Crip
« Reply #17 on: April 30, 2019, 08:06:34 AM »
The only problem I see, so far, is part of the "page created..." is cut off at the bottom. To fix it find line: 3791:

Change this:

Code: [Select]
margin: -5em 5px 0;
To this:

Code: [Select]
margin: -5em 5px 20px 0;

Thanks for the code Steve, gonna try it now.

That works!  :banana:
Thanks Steve.
"Not all who wander are lost."-Tolkien
Yesterday When I was Young.

Offline Skhilled

  • Administrator
  • *
  • Posts: 8972
  • Gender: Male
  • All of my passwords are protected by amnesia...
  • View Gallery
    • Buildz Hosting
Re: Honoring Crip
« Reply #18 on: April 30, 2019, 08:24:12 AM »
No problem, bro! ;)

Offline Ken (OP)

  • Vietnam Era Veteran
  • Administrator
  • *
  • Posts: 11658
  • Gender: Male
  • View Gallery
Re: Honoring Crip
« Reply #19 on: May 21, 2019, 08:55:58 AM »
... ClearWhite theme, we will likely run this one until Jeff's BD in June

I liked this theme from the very first and it has only grown on me more over these past weeks so we will keep this one as our default theme for the forseeable furture. 
"Not all who wander are lost."-Tolkien
Yesterday When I was Young.