26. Miscellaneous
A. Info mark
IPB 3.1.x
To remove it, still in
ipb_styles.css find:
/* MESSAGE STYLES */
.message {
background: #f1f6ec url(http://www.smartestcomputing.us.com/public/style_images/test2-images/information.png) no-repeat 8px 10px;
Delete
url({style_images_url}/information.png) no-repeat 8px 10px part and the info mark will be gone.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
IPB 3.2.x
Doesn't apply
B. Message box border
IPB 3.1.x
In a very same section:
/* MESSAGE STYLES */
.message {
background: #f1f6ec url(http://www.smartestcomputing.us.com/public/style_images/test2-images/information.png) no-repeat 8px 10px;
padding: 10px 10px 10px 30px;
border: 1px solid #b0ce94;
changing default border color from
#b0ce94 to
#C73F17 (chili powder):
You can also make that border thicker by changing 1px to whatever you want, say 3px in this example:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
IPB 3.2.x
Change color in red:
Quote
.message.unspecific {
background-color: #f3f3f3;
border-color: #d4d4d4;
color: #515151;
margin: 0 0 10px 0;
clear: both;
}
C. Page numbers
IPB 3.1.x
Find:
ul.pagination li {
background: #fff;
Changing
#fff to
#CDAF95 (peachpuff3):
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
IPB 3.2.x
1. Change color in red:
Quote
.pagination .pages li.active {
background: #7BA60D;
color: #fff;
font-weight: bold;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
padding: 1px 5px;
}
2. You have apply another edit to change << >> next prev last buttons background color. Change color in red:
Quote
.pagination .back a,
.pagination .forward a {
display: inline-block;
padding: 0px 6px;
height: 20px;
background: #eaeaea;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
text-transform: uppercase;
color: #5a5a5a;
font-size: 11px;
font-weight: bold;
}
3. And another change for so called
mini pagination. Change color in red:

ul.mini_pagination li a {
background:
#fff;
border: 1px solid #d3d3d3;
padding: 1px 3px;
}
D. Topic prefix
IPB 3.1.x
Find:
/* Topic prefix */
.topic_prefix {
background-color: #daede2;
Changing
#daede2 to
#C76114 (rawsienna):
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
IPB 3.2.x
Add line in red:
Quote
.ipsBadge {
display: inline-block;
height: 16px;
line-height: 16px;
padding: 0 5px;
font-size: 9px;
font-weight: bold;
text-transform: uppercase;
color: #fff;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
background: ???
}
E. My Profile "Update" button
IPB 3.1.x
Find:
.message.user_status #update_status {
background: #243f5c;
Changing
#243f5c to
#B0171F (indianred):
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
IPB 3.2.x
Doesn't apply.
F. "Find Posts" message border
IPB 3.1.x
Find:
.message.unspecific {
background-color: #CDAA7D;
border-color: #d4d4d4;
Changing
#d4d4d4 to
#C76114 (rawsienna):
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
IPB 3.2.x
Doesn't apply.
==========================================================================================================================
This is pretty much, I can think of regarding colors. If you need to change some other color, I missed in my tutorial, please feel free to start a new topic in IPB 3.0 skinning and editing forum and I'll try to answer your question. You'll need to register though