Feedback and Customize Footer Style.
DigOurGame - May 21, 2009 - 04:22
| Project: | Beach |
| Version: | 6.x-1.0-beta1 |
| Component: | Miscellaneous |
| Category: | task |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Description
Greetings,
I had no idea where to post this other then here. Thank you so much for the best and most customizable theme I have ever used. Excellent work! You have really dressed up our newest game site at http://dog.servegame.org Within I would say 10 minutes we customized the look to fit our look. We have had no prior ccs or customizing experience at all.
Thank you,
Rodneymillerpca
a.k.a. life
DigOurGame

#1
Thank you for your appreciations, I got your PM asking for customizing color and font size in your site footer. And some examples may useful for other people who want to customize this theme too. So I post some CSS styles here. And I suggest anyone should add your customized styles to custom.css file or rename custom-sample.css in theme's css folder then enable it in Beach theme settings (admin/build/themes/settings/beach). This may secure your customized styles when updating to Beach theme new version.
OK, let's tweak it.
If you've planned to use white background for footer section, you may want to use something like this.
/* change #bottom-wrapper text size and color */
#bottom-wrapper {
color: #555; /* or any color */
font-size: 13px; /* or any number */
}
/* change #bottom-wrapper links color */
#bottom-wrapper a {
color: #49b;
}
#bottom-wrapper a:hover {
color: #e63;
}
/* change #footer and #credit-wrap border style */
#footer .column-wrapper {
border: 0 none;
}
#credit-wrap {
border-top: 1px solid #ddd;
}
In case you need to change #theme-credit font-size only
/* change #theme-credit font size */#theme-credit {
font-size: 13px; /* or any number */
}
Let's see sample style from attached image. Hope this may help.
#2
Greetings,
Wow! Thank you very much. That is exactly what we had in mind. We believe in giving credit where credit is due. I think we all agree credit is well deserved here. This is not only an excellent theme, It is also an excellent teacher. We have to admit in the past we just randomly threw up themes without a second thought. This theme gave us an outstanding look, an inquisitive learning aid, and is very understandable. You deserve the "Best Theme" and the "Best Maintained" awards.
Thank you,
Rodney Miller PCA
a.k.a. life
DigOurGame
*EDIT: Thought it may help to add links to color charts. Background http://vortex.cis.vtc.edu/pcc/colorchartBG.html Foreground http://vortex.cis.vtc.edu/pcc/colorchartFG.html
*Note: These links are to an outside site I have know to be safe and family friendly, However Drupal, Beach Theme moderators, nor I control the sites content.
#3
You're welcome and anyone, too.