How to remove date from post title header?
-
Hi,
I am setting up a small blog to list the projects I work on. I initially set up the About section as a page and the projects as posts. I would like to flip this and have About content appear first on the home page, which I can do using the Post feature. I can then use pages for Current and Past Projects. I need to do 2 things to make this work:
1. Remove the Date that appears below the header/post title
2. Remove the text “Just another wordpress blog” below the blog titleI use the theme Simpla. Below is the code. Could someone please tell me what I need to delete?
Thank you very much!!!
Aria img {
border:none;
}#content img {
margin:5px;
}body {
background:#fff url(‘./images/bg.png’) repeat-x;
border-top:5px solid #333;
color:#555;
font-family:Georgia, “Times New Roman”, Times, serif;
font-size:62.5%;
line-height:1.5;
text-align:center;
margin:0;
padding:0;
}#wrap {
text-align:left;
width:76em;
margin:0 auto;
}#content {
font-size:1.2em;
float:left;
width:40em;
padding:1em;
}#sidebar {
font-size:1.1em;
float:right;
width:20em;
list-style:none;
margin:0;
padding:2em 0 0;
}#header {
padding:3em 1em;
}#footer {
background:#333;
border-top:1px solid #777;
color:#333;
clear:both;
font-size:.9em;
padding:.5em;
}h1,h2,h3 {
font-family:Tahoma, Verdana, Arial, Helvetica, sans-serif;
font-weight:normal;
letter-spacing:-1px;
margin:0;
}#header h1 {
font-family:Georgia, “Times New Roman”, Times, serif;
font-size:3em;
margin:0 1em 0 0;
}#header h1 a {
color:#E87830;
}#header h1 a:hover {
color:#CC0000;
}#header p {
color:#aaa;
font-size:1.1em;
margin:-.5em 0 0;
}.entrytitle h2 {
font-size:2.2em;
}.entrytitle h2 a {
color:#B4C24B;
}.entrytitle h2 a:hover {
color:#58BBEB;
}.entrytitle h3 {
font-size:1.8em;
color:#6F6F6F;
}#sidebar h3 {
color:#555;
font-size:1.5em;
margin:1em 0;
}.entry {
margin-bottom:3em;
}.sticky {
background:#f7f7f7;
padding:5px 10px 10px;
}.entrymeta {
font-size:.9em;
clear:both;
}.postedby {
background:#fff url(‘./images/user.gif’) no-repeat;
padding:3px 3px 3px 20px;
}.filedto {
background:#fff url(‘./images/post.gif’) no-repeat;
padding:3px 3px 3px 20px;
}.commentslink {
background:#fff url(‘./images/packaged.gif’) no-repeat;
padding:3px 3px 3px 20px;
}.sticky .entrymeta span,.sticky .entrymeta a {
background-color:transparent;
}#sidebar ul {
list-style-type:none;
margin:0;
padding:0;
}#sidebar ul ul {
margin-left:10px;
}#sidebar ul li {
border-bottom:1px dotted #ddd;
margin-bottom:.3em;
padding:.3em;
}#sidebar li.widget {
clear:both;
}.commentsblock {
margin:.5em;
padding:1em;
}.commentsblock textarea {
width:100%;
}.commentsblock input,.commentsblock textarea {
border:1px solid #d1d1d1;
}.commentsblock textarea:focus {
background:#eee;
border:1px solid #a1a1a1;
}.commentsblock textarea:focus,.commentsblock input:focus {
background:#eee;
border:1px solid #a1a1a1;
}.commentauthor {
display:block;
font-size:1.5em;
}ol.commentlist {
color:#777;
font-size:.9em;
list-style-type:none;
margin:1.5em 0 0;
padding:0;
}.commentlist li {
margin-bottom:.5em;
list-style-type:none;
padding:.5em 1em;
}.commentlist li .avatar {
float:right;
border:1px dotted #d1d1d1;
padding:2px;
}.thread-alt {
background:#f3f5e9;
border:1px dotted #d1d1d1;
padding:.5em;
}h3#comments {
font-size:1.6em;
}a {
color:#579;
text-decoration:none;
}a:hover {
color:#CC0000;
}#content img.centered,#content img.aligncenter {
display:block;
margin-left:auto;
margin-right:auto;
}img.alignright {
display:inline;
margin:0 0 2px 7px;
padding:4px;
}img.alignleft {
display:inline;
margin:0 7px 2px 0;
padding:4px;
}.alignright {
float:right;
}.alignleft {
float:left;
}.aligncenter,div.aligncenter {
display:block;
margin-left:auto;
margin-right:auto;
}.wp-caption {
border:1px solid #ddd;
text-align:center;
background-color:#f3f3f3;
padding-top:4px;
-moz-border-radius:3px;
-khtml-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
margin:10px;
}.wp-caption img {
border:0 none;
margin:0;
padding:0;
}.wp-caption p.wp-caption-text {
font-size:11px;
line-height:17px;
margin:0;
padding:0 4px 5px;
}The blog I need help with is: (visible only to logged in users)
-
Im not familiar with simpla but i dont think what you want will be solved by changing the CSS.
the date will be somewhere in your .php page which handles the posts. in wordpress 3.0 this is the loop.php page. I cant remember what it is in 2.x but im sure it wont take you long to find it.
the “just another blog” is the site description. if its any sort of theme you should have the option to blank this out in the theme setup via your dashboard. If not, again yu will have to edit the php page using the editor. usually this is in the header.php page i think, but again depends on the theme.
it will say something like <?php bloginfo( ‘description’ ); ?> , this is wp3.0 again, not sure if its the same in 2.x
hope that helps alittle.
Ted
-
a) You don’t have to turn “About” into a post then remove the date: just set your front to display the About page instead of posts:
http://en.support.wordpress.com/pages/front-page/b) You can’t remove “”Just another wordpress blog” without removing “Theme: Simpla by Phu” as well, and that’s not fair.
Do you have the paid CSS upgrade, by the way?
@Ted: You’re talking about self-hosted blogs while this is the wp.COM forum.
- The topic ‘How to remove date from post title header?’ is closed to new replies.