Design Themes Modification When Updating from CNCat 4.1.3 to CNCat 4.2
style.css
Modifications:
- Styles for new elements added.
Apply Modifications:
- Replace the following code:
#newitems {
width: 250px;
margin-right: 20px;
}
#newitems .title {
background: #708EE1 url('images/newitemsbg.gif') repeat-x;
color: white;
border-left: 1px solid #5167A5;
border-top: 1px solid #5167A5;
border-right: 1px solid #5167A5;
border-bottom: 1px solid #708EE1;
height: 29px;
font-size: 120%;
font-weight: bold;
vertical-align: middle;
padding: 0 20px;
white-space: nowrap;
}
#newitems .clear {
padding-right: 80px;
border-bottom: 1px solid #5167A5;
}
#newitems .items {
background: white;
padding: 10px 10px 10px 10px;
border-left: 1px solid #5167A5;
border-bottom: 1px solid #5167A5;
border-right: 1px solid #5167A5;
}
#newitems .items .image {
padding-right: 5px;
padding-top:5px;
}
with
#newitems, #stats {
width: 250px;
margin-right: 20px;
}
#newitems .title, #stats .title {
background: #708EE1 url('images/newitemsbg.gif') repeat-x;
color: white;
border-left: 1px solid #5167A5;
border-top: 1px solid #5167A5;
border-right: 1px solid #5167A5;
border-bottom: 1px solid #708EE1;
height: 29px;
font-size: 120%;
font-weight: bold;
vertical-align: middle;
padding: 0 20px;
white-space: nowrap;
}
#newitems .clear, #stats .clear {
padding-right: 80px;
border-bottom: 1px solid #5167A5;
}
#newitems .items, #stats .items {
background: white;
padding: 10px 10px 10px 10px;
border-left: 1px solid #5167A5;
border-bottom: 1px solid #5167A5;
border-right: 1px solid #5167A5;
}
#newitems .items .image, #stats .items .image {
padding-right: 5px;
padding-top:5px;
}
- Add the following code
#stats .items .info {
padding: 5px 0;
}