Hi all,
I noticed a problem with my custom CSS today, which was not there last week. Let me explain (first in words, and then with my CSS code):
I use K2-lite with custom CSS. Last week, I made the following changes to custom CSS:
1. Increased blog width to 800 pixels
2. Decreased header height from 200 to 125 pixels
3. Increased font-size for readability
4. Made a new header of size 800 by 125 to fit the above changes.
Now, the K2-lite custom header page only allows you to put a custom header of size 780 by 125. I got arround this problem by uploading my new header, and including it through custom CSS. The relevant code is as follows:
body {
color:#444;
background:#fff;
font:72% 'Lucida Grande', Verdana, Arial, Sans-serif;
}
* html #page {
width:800px;
}
#page {
background:#fff;
border:0;
width:800px;
padding:2px 0 10px;
}
#header {
height:125px;
border-bottom:1px solid #000;
background:url('http://mirkwood.wordpress.com/files/2006/12/mirkwoodheader_white.jpg');
font:2em;
}
.secondary {
font-size:1.1em;
padding-left:20px;
border-left:1px solid #ddd;
margin:0 0 20px 70%;
}
Now, until last week, all the above changes were working perfectly. Today morning, I noticed that the my customized header is not visible. I would appreciate any help in this. I will, of course, send this in to WP support but they are on a short holiday, so I thought I would pick your brains.
On a related note, the default K2-lite theme CSS which was easily accessible earlier just by viewing the page source, and finding the appropriate link to the .css file, is no longer directly accessible. (One has to locate the custom CSS file, and then pick the default CSS from its first line.) I wonder if there was some internal reorganization done last week, which resulted in the above header problems. I should note that the other customizations (font sizes, increased blog width, etc) are all running fine.
Thanks a lot for reading this to the end. Any thoughts are welcome.