XF 2.1 What to change for 2.1 - .thread_view .titleBar

DaveL

Well-known member
Currently using this on my 1.5 board. What would I need to change .thread_view .titleBar to work on 2.1?

Code:
/* THREAD VIEW TITLE BAR ENHANCEMENTS */
 
.thread_view .titleBar {
    border: 1px solid #5b0b0b;
    border-radius: 5px;
    background:  repeat-x scroll bottom #891010 !important;
    background-color: #3d4bb6!important;
    margin: 10px auto 10px;
    text-align: center;
    padding: 10px 10px;
    box-shadow: 0 0 1px #ffffff inset;
    
}
.thread_view .titleBar  #pageDescription , .thread_view .titleBar p{
    color: #DCCDBB;
}
 
.thread_view .titleBar #pageDescription a{
  color: #f7e5b6;
  font-weight: bold;
}
 
.thread_view .titleBar h1 {
  color: #f7e5b6;
  text-shadow: 0 0 0 transparent, 1px 1px 0 #4B3D2D !important;
}
 
 
/* THREAD VIEW TITLE BAR ENHANCEMENTS */
 
This should do the trick:

Code:
/* THREAD VIEW TITLE BAR ENHANCEMENTS */
[data-template="thread_view"] .p-body-header
{
    border: 1px solid #5b0b0b;
    border-radius: 5px;
    background:  repeat-x scroll bottom #891010 !important;
    background-color: #3d4bb6!important;
    margin: 10px 0;
    text-align: center;
    padding: 10px 10px;
    box-shadow: 0 0 1px #ffffff inset;
    .p-title
    {
        color: #f7e5b6;
        text-shadow: 0 0 0 transparent, 1px 1px 0 #4B3D2D !important;
        display: block;
        text-align: center;
    }
    .p-description
    {
        color: #DCCDBB;
        a
        {
            color: #f7e5b6;
            font-weight: bold;
        }
    }
}
/* THREAD VIEW TITLE BAR ENHANCEMENTS */
 
This should do the trick:

Code:
/* THREAD VIEW TITLE BAR ENHANCEMENTS */
[data-template="thread_view"] .p-body-header
{
    border: 1px solid #5b0b0b;
    border-radius: 5px;
    background:  repeat-x scroll bottom #891010 !important;
    background-color: #3d4bb6!important;
    margin: 10px 0;
    text-align: center;
    padding: 10px 10px;
    box-shadow: 0 0 1px #ffffff inset;
    .p-title
    {
        color: #f7e5b6;
        text-shadow: 0 0 0 transparent, 1px 1px 0 #4B3D2D !important;
        display: block;
        text-align: center;
    }
    .p-description
    {
        color: #DCCDBB;
        a
        {
            color: #f7e5b6;
            font-weight: bold;
        }
    }
}
/* THREAD VIEW TITLE BAR ENHANCEMENTS */
@Russ , You absolute star! Thank you!
 
Top Bottom