Our FamilyForum

FamilyForum Documentation & Help => FamilyForum Features & Guidelines => Forum Features => Topic started by: Ken on April 08, 2019, 02:48:07 PM

Title: Honoring Crip
Post by: Ken on April 08, 2019, 02:48:07 PM
Honoring Crip(Jeff (https://www.ourfamilyforum.org/FamilyForum/index.php?action=profile;u=193))

Earlier Steve posted about Updating Crip Zone Themes (https://www.ourfamilyforum.org/FamilyForum/index.php?topic=4644.0) and that reminded me that we didn't have any of Jeff's themes installed here on OFF, so me installed the Ornament Theme (https://www.jpr62.com/theme/index.php?action=downloads;sa=view;down=64). 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.
Title: Re: Honoring Crip
Post by: Skhilled on April 12, 2019, 07:40:39 AM
Btw, you are missing some images on the error page, prolly theme related.
Title: Re: Honoring Crip
Post by: Ken on April 12, 2019, 10:17:40 PM
What's missing Steve? Looks OK to me?
Title: Re: Honoring Crip
Post by: Skhilled 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;
}
Title: Re: Honoring Crip
Post by: Ken 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.
Title: Re: Honoring Crip
Post by: Ken 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
Title: Re: Honoring Crip
Post by: Skhilled on April 12, 2019, 10:57:02 PM
right place but maybe I did it wrong. One sec...
Title: Re: Honoring Crip
Post by: Skhilled 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;
}
Title: Re: Honoring Crip
Post by: Ken 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
Title: Re: Honoring Crip
Post by: Skhilled 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;
}
Title: Re: Honoring Crip
Post by: Ken on April 13, 2019, 12:58:11 PM
 :opps: hate it when that happens.

Not doing so good today, this will have to wait.
Title: Re: Honoring Crip
Post by: Skhilled 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.
Title: Re: Honoring Crip
Post by: Ken 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.
Title: Re: Honoring Crip
Post by: Skhilled 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.
Title: Re: Honoring Crip
Post by: Ken 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:
Title: Re: Honoring Crip
Post by: Skhilled 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;
Title: Re: Honoring Crip
Post by: Ken 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.
Title: Re: Honoring Crip
Post by: Ken 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.
Title: Re: Honoring Crip
Post by: Skhilled on April 30, 2019, 08:24:12 AM
No problem, bro! ;)
Title: Re: Honoring Crip
Post by: Ken 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.