|
#1
Dec 14, 2010, 04:16 AM
|
|
Hi!
Where in Wordpress do I change number of posts to be displayed on the start page?
I have a widget, Latest comments, with the text "admin about" set to white, how do I change that to another color?
I would like to have a background image on the page, but when I set one the entire page goes transparent, including the center column, how do I avoid this?
Ok, I solved question no 1 and 3, but are still stuck on no 2, see my latest post ...
/Karin
Last edited by juggledad; Dec 15, 2010 at 04:22 AM.
|
#2
Dec 14, 2010, 06:13 AM
|
|
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
what version of WP and Atahualpa?
What is the URL?
Have you looked thru the wordpress dashboard->setting options?
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#3
Dec 14, 2010, 10:11 AM
|
|
Hi!
It's Atahualpa 3.4.9
Wordpress 3.0.3
http://didring.se/wordpress
I've solved the top question, but would like to add one:
I'd like to translate the text in the reply area,
Leave a Reply
Cancel
Logged in as admin. Logout »
You can use these HTML tags
Is that possible?
Best,
Karin
|
#4
Dec 14, 2010, 04:48 PM
|
|
Hm, now I tried using :
ul.commentlist li {
color: #0000000;
}
to change the color in the comments reply area, it worked, but it also change the "admin om" (bottom right on mainpage) to black, which wasn't what I wanted ... so I took the code away, but "admin om" is till black ...? What to do?
/Karin
|
#5
Dec 15, 2010, 04:32 AM
|
|
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
If you look at teh source of the page, yo will see the area you are interested is this code:
HTML Code:
<div id="recent-comments-3" class="widget widget_recent_comments">
<div class="widget-title">
<h3>Senaste kommentarer</h3>
</div>
<ul id="recentcomments">
<li class="recentcomments">admin om
<a href="http://didring.se/wordpress/archives/27#comment-7">Namninsamling</a>
</li>
<li class="recentcomments">admin om
<a href="http://didring.se/wordpress/archives/27#comment-6">Namninsamling</a>
</li>
</ul>
</div>
to make the 'admin om' text to ...say blue, you would code
HTML Code:
#recentcomments li.recentcomments {color: blue;}
and this would cchange the text 'admin om' to blue, but it would also change the text 'Namninsamling' to blue unless there was another specific CSS selector/rule changing it to another color (Cascading Style Sheets...children inherit the settings of the parent). If there isn't and you wanted it to be ...red, you would need to set it so you would have
HTML Code:
#recentcomments li.recentcomments {color: blue;}
#recentcomments li.recentcomments a {color: red;}
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#6
Dec 15, 2010, 04:54 AM
|
|
Thanks a lot, where do I change this? Do I need to download the source code or can it be changed somwhere in the theme?
Thanks again!
|
#7
Dec 15, 2010, 05:23 AM
|
|
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
add it to to ato->Add HTML/CSS Inserts->CSS Inserts
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#8
Dec 15, 2010, 07:31 AM
|
|
Hi!
Thanks a lot, worked just fine,
is it also possible to translate the text in the reply area:
Leave a Reply
Cancel
Logged in as admin. Logout »
You can use these HTML tags
/Karin
|
#9
Dec 15, 2010, 08:12 AM
|
|
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
this has been answered, do a forum search
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#10
Dec 15, 2010, 08:54 AM
|
|
Ok, I tried but couldn't find it, I'll try again ... thanks a lot!
|
|