hi friends
i need your help!
i wanted add Friends icons like below picture, in my footer, what should i add to follow this change in my code? can any one make the code, where should i placed in my coding.
another point ! “click here to read more” see in each post, i wanted to change into button “read more” how should i changed it
thanks waiting
my website http://www.smashinghub.com
ralphm
January 20, 2010, 12:00pm
2
In your footer file, place an unordered list, and set the list items to float left:
<ul id="friends">
<li></li>
<li></li>
<li></li>
...
</ul>
In the css file
#friends li {
float: left;
}
That’s the basics of it.
You’ll find the footer file in
wp-content > themes > theme name > footer.php
… where ‘theme name’ is whatever this WP theme is called.
To modify the read more text, look in
wp-content > themes > theme name > index.php
tell me? how i can inset the header heading of “Friends” see i have inserted the code
http://www.smashinghub.com in footer
ralphm
January 20, 2010, 12:36pm
4
Try moving the code inside the footer div instead of placing it right at the end.
Maybe insert this:
<h2>Friends</h2>
<ul id="friends">
<ul id="friends">
<li><a href="http://www.thesofthelp.com/">
<img title="Freeware Software" alt="Freeware Software" src="http://imgur.com/IPz5v.jpg"></a>
</li>
</ul>
CSS
#friends li {
float: left;
padding: 0 2px 2px 0;
}
#friends {
list-style: none outside none;
overflow: hidden;
}
#friends li img {
border: 2px solid #1d6272;
}
I put a little border on, as you have in the image, which you can remove if you like.
Try moving the code inside the footer div instead of placing it right at the end.
Maybe insert this:
<h2>Friends</h2>
<ul id="friends">
<ul id="friends">
<li><a href="http://www.thesofthelp.com/">
<img title="Freeware Software" alt="Freeware Software" src="http://imgur.com/IPz5v.jpg"></a>
</li>
</ul>
CSS
#friends li {
float: left;
padding: 0 2px 2px 0;
}
#friends {
list-style: none outside none;
overflow: hidden;
}
#friends li img {
border: 2px solid #1d6272;
}
I put a little border on, as you have in the image, which you can remove if you like.
last point , how i display only 4 posts in one page , where is the option in wordpress
thanks a lot
ralphm
January 20, 2010, 9:53pm
6
Only i have wp 2.8, so maybe not is in same place. But in Admin area, on left side go to
Settings > Reading > “Blog pages show at most” and then type 4.
Hope is helpful for you.
thanks! i got the option. but it showing “« Older Entries” like, how i can show like page number 1,2,3,4 etc
ralphm
January 21, 2010, 8:12am
8
I’m not sure about that. If no one answers here, I’d head over to the WordPress forum.
ok waiting for the answer
That would be PHP (pagination) in word press (I’d recommend going there)
You’d have to store variables depending on what page of results are comoing and then echo the current page.
I wouldn’t wait here for the answer unless someone who happens to know wordpress PHP/CSS is here ;);
RyanReese:
That would be PHP (pagination) in word press (I’d recommend going there)
You’d have to store variables depending on what page of results are comoing and then echo the current page.
I wouldn’t wait here for the answer unless someone who happens to know wordpress PHP/CSS is here ;);
i installed the plugin now. my friend helped me thanks very much