Message Title Enhancement

Message Title Enhancement v1

No permission to download
I haven't used any of audentio's styles so not sure what the path is. Likely, you would be uploading the image to the style your using/custom style gradients folder.
Yea i did that and i copied your code and it didnt work..

min forum is under /forum

does that make a diffrence?

I also tried it on the defualt skin and it also didnt work.. its denfinatly wrong directory
 
Yea i did that and i copied your code and it didnt work..

min forum is under /forum

does that make a diffrence?

I also tried it on the defualt skin and it also didnt work.. its denfinatly wrong directory



Try replacing the path for the image to

Code:
styles/drift-dark/xenforo/gradients/whateverthenameoftheimageis.png

Better still, since this is an old and outdated method imo, try applying some css3 gradients instead. Since I'm not familiar with this custom style I'm sure you'll figure it out at some point but I tried this yesterday on both my custom style and default and it worked perfectly.
 
Try replacing the path for the image to

Code:
styles/drift-dark/xenforo/gradients/whateverthenameoftheimageis.png

Better still, since this is an old and outdated method imo, try applying some css3 gradients instead. Since I'm not familiar with this custom style I'm sure you'll figure it out at some point but I tried this yesterday on both my custom style and default and it worked perfectly.
tried that still doesnt work.. :(
 
Try replacing the path for the image to

Code:
styles/drift-dark/xenforo/gradients/whateverthenameoftheimageis.png

Better still, since this is an old and outdated method imo, try applying some css3 gradients instead. Since I'm not familiar with this custom style I'm sure you'll figure it out at some point but I tried this yesterday on both my custom style and default and it worked perfectly.

Still works for me on my site. Have had this added since it's release. :)
 
This doesn't work for me for some reason, the board title enhancement works just fine, but for some reason this isn't working. Here is the code:

Code:
/* THREAD VIEW TITLE BAR ENHANCEMENTS */

.thread_view .titleBar {
    border: 1px solid #0b545b;
    border-radius: 5px;
    background: url("@imagePath/xenforo/gradients/threadview-bg.png") repeat-x scroll bottom #891010 !important;
    background-color: #108589 !important;
    margin:0px auto;
    text-align: center;
    padding: 10px 10px;
    box-shadow: 0 0 1px #ffffff inset;
}
.thread_view .titleBar  #pageDescription , .thread_view .titleBar p{
    color: #bbd9dc;
}

.thread_view .titleBar #pageDescription a{
  color: #b6f2f7;
  font-weight: bold;
}

.thread_view .titleBar h1 {
  color: #b6f2f7;
  text-shadow: 0 0 0 transparent, 1px 1px 0 #2d4b4a !important;
}


/* THREAD VIEW TITLE BAR ENHANCEMENTS */

I have the threadview-bg.png in the xenforo/gradients section of my imagepath and it still doesn't work :O
 
If my H1's are links, what's the code to change the colour of those to white?

.thread_view .titlebar a {
color: #FFF;
}

I've got blue text on a blue gradient right now and it's baffling.
 
Top Bottom