i want a picture behind the title and behind the posted from link (as background)
i hop that somone can help me..
grttz gijs
my website is http://mastersite.gethost.nl
i hav a image with what i want: http://home.deds.nl/~mastersite/Naamloos.png
bex 01 - entries title
-
Don Chambers
- Regular
- Posts: 3657
- Joined: Mon Feb 13, 2006 2:40 am
- Location: Chicago, IL, USA
- Contact:
You mean like an icon image NEXT to the text, perhaps just before it?
For the first one, do you want that for the date, or the title? let me also note that the template author has used a rather unusual class for the entry title - actually using "serendipity_commentsTitle"m which is also the class used on the extended entry for "Add Comment" (and usually "Trackbacks" and "Comments" on the same page).
For the first one, do you want that for the date, or the title? let me also note that the template author has used a rather unusual class for the entry title - actually using "serendipity_commentsTitle"m which is also the class used on the extended entry for "Add Comment" (and usually "Trackbacks" and "Comments" on the same page).
=Don=
-
carl_galloway
- Regular
- Posts: 1331
- Joined: Sun Dec 04, 2005 5:43 pm
- Location: Andalucia, Spain
- Contact:
After the text?
Look if you want an image in the entry title, there are a couple of different options, tell us which one you want
1. you want an icon beside the title
2. you want a background image for the title text
3. you want to replace the text with a nice font that is an image
All of these can be done, but we need to know which one
Look if you want an image in the entry title, there are a couple of different options, tell us which one you want
1. you want an icon beside the title
2. you want a background image for the title text
3. you want to replace the text with a nice font that is an image
All of these can be done, but we need to know which one
-
Don Chambers
- Regular
- Posts: 3657
- Joined: Mon Feb 13, 2006 2:40 am
- Location: Chicago, IL, USA
- Contact:
OK - let's start SOMEWHERE.
Your photo shows that you circled the entire line, containing both the entry date, and the entry title, so I am going to assume you want an image applied to the entire line, and not just the entry title. This will place an image behind that entire line, as well as the lines for "Comments" and "Add a comment" when the extended entry is viewed:
Find this in your style.css file:
Add this after the other rules:
You should also remove the existing background statement by commenting it out:
Now, if you do NOT want the title image to apply to the lines "Comments" and "Add a comment", do not revise the existing rules, instead add a new one as follows:
The entry footer is this line in your style.css file:
Simply add a background image to that block as mentioned above.
Your photo shows that you circled the entire line, containing both the entry date, and the entry title, so I am going to assume you want an image applied to the entire line, and not just the entry title. This will place an image behind that entire line, as well as the lines for "Comments" and "Add a comment" when the extended entry is viewed:
Find this in your style.css file:
Code: Select all
#content .serendipity_commentsTitle, #content h4.serendipity_title {Code: Select all
background-image: url(templates/bex01/img/your_image_name.png) bottom left no-repeat;
Code: Select all
/* background-color:#eeeeee; */Code: Select all
h2.serendipity_commentsTitle {
background-image: url(templates/bex01/img/your_image_name.png) bottom left no-repeat;
}Code: Select all
/* the small text at the end of each entry 'Posted by etc' */
.serendipity_entryFooter {
margin-top:10px;
margin-bottom:70px;
padding:0px;
padding-top:3px;
border-top: 1px solid #dedede;
font-size:0.9em;
color: #31314B;
text-align:center;
clear:both;
}=Don=