In the template for "Header", towards the bottom, there is this snippet of code:
<mt:If name="main_index">
<div id="homepage-image"> </div>
</mt:If>
Just remove the surrounding mt:If tags, so instead of those three lines, you just have one:
<div id="homepage-image"> </div>
Republish the site and that should do it.
This is the basic patter to add to Design/Template/Stylesheet. You can substitute any font style. If the font has more than one word, put single quotations around the style name. Make sure to add a comma and serif or sans serif, so that the program can choose a suitable default font style if yours cannot be read by the browser.
body {
color: #fff;
}
#content {
background-color: black;
font-family: 'Microsoft YaHei',sans-serif;
}
#container-inner {
background-color: black;
font-family: 'Microsoft YaHei', sans-serif;
}
h1#header-name
{
font-family: 'Microsoft YaHei',sans-serif;
}
a
{
font-family: 'Microsoft YaHei', sans-serif;
}
The following code is for a black background:
body {
color: #fff;
}
#content {
background-color: black;
}
#container-inner {
background-color: black;
}
Here are the instructions for making the whole blog sidebar-less and make the content take up the entire page as well.
1) Design > Template > Header
replace code (it is at the bottom of the template):
<div id="alpha">
with:
<div id="alpha" class="alpha-wide">
2) Design > Template > Sidebar
Remove all code from this template.
3) Design > Template > Stylesheet
add this:
.alpha-wide {
width:940px !important;
}
That's it.
Recent Comments