Quote:
Originally Posted by pityocamptes
OK, updated the template. Thanks. However, now my blogs and articles tabs are giving me 404 errors.... not sure why...
OK, not the template fault, looks like a dbseo issue, contacted them...
-->>>OH, the reason the table td/tr issue was present is that I wanted the site logo to auto shrink with no matter how big the user makes the screen. Now, using the suggestion above, it no longer does that. Anyway to work around that??? Thanks.
|
Quote:
Originally Posted by pityocamptes
BUMP
|
The css for the logo is located in additional.css near the top, there's two for this area one is the actual background and the other serves as a "cover" i.e. a transparent image that covers the logo to prevent straight -right-click save image etc.
In additional.css find (or similar, depending on if you're using fixed or fluid version):
Code:
.ablogo {
min-width: 100% !important;
min-height: 156px !important;
background: transparent !important;
overflow: hidden;
}
.abimage {
background: url({vb:stylevar titleimage}) center center no-repeat !important;
height: 155px !important;
}
Change to:
Code:
.ablogo {
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background: transparent !important;
overflow: hidden;
}
.abimage {
background: url({vb:stylevar titleimage}) center center no-repeat !important;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
So basically remove any references of width/height and add in:
Code:
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
*Not tested so let me know, might need to adjust/tinker to make it presentable

.