"By admin | Published: January 15, 2010 | Edit"
"Posted in Uncategorized | 1 Comment | Edit"
Wanting to, if possible, remove the blog feel. But was struggling to follow the css and php. Any help please?
"By admin | Published: January 15, 2010 | Edit"
"Posted in Uncategorized | 1 Comment | Edit"
Wanting to, if possible, remove the blog feel. But was struggling to follow the css and php. Any help please?
I'm also trying to move the side bar and the main content box to the left, so it is not centered?
Any help?
This is my style sheet so far:
/*
LAYOUT: One-Column (Left) Fixed
DESCRIPTION: Two-column 950px fixed layout with one sidebar left of content
*/
body {
min-width:1080px;
}
#header {
position:relative;
}
#branding {
width:1080px;
margin:0 auto;
}
#access {
position:relative;
overflow:hidden;
}
.menu {
width:1080px;
margin:0 auto;
}
#main {
width:1080px;
margin:0 auto;
overflow:hidden;
position:relative;
}
#container {
width:1080px;
float:right;
margin: 0 0 0 -310px;
}
#content {
width:840px;
overflow:hidden;
margin: 0 0 0 320px;
}
.hentry {
width:850px;
}
.main-aside {
width:300px;
float:left;
position:relative;
}
#primary {
float:left;
}
#secondary {
clear:left;
}
#footer {
clear:both;
}
#subsidiary {
width:1080px;
margin:0 auto;
overflow:hidden;
}
#subsidiary .aside {
width:300px;
float:left;
margin:0 20px 0 0;
}
#subsidiary #third {
margin:0;
}
#siteinfo {
clear:both;
width:1080px;
margin:0 auto;
}
You just comment them out on the index page and the single post page.
I have looked in those pages, the only thing which i could remove is:
<?php thematic_comments_template(); ?>
in single.php, but that just removes the comment box at the bottom.
Are you using a child theme?
To stop the page from being centered, you need to stop body being centered, which happens because of the min-width setting. Try instead:
body{
width: 1080px;
}
To stop the meta information being shown, first identify the div or class of this info and then set the css property to:
display:none;
I think this will work, although I don't know if it's the recommended method as I'm fairly new to all this too.
Hi,
the post footer is the easy one .. add this code to your child theme's functions.php:
function remove_postfooter() {
}
add_filter('thematic_postfooter', 'remove_postfooter');
The post meta is the same:
function remove_postmeta() {
}
add_filter('thematic_postheader_postmeta', 'remove_postmeta');
Chris
And what if i want to keep only the date? Is it possible?
.. if you could wait for a couple of days?! Thematic 0.9.6 makes this one much easier.
Chris
Great.
Thanks.
I will wait for 0.9.6
This topic has been closed to new replies.