1 jdkock May 30, 2008 11:57
3 jdkock May 30, 2008 12:50
sam2kb wrote:
I don't see the Edit image too ;) because I can't edit your posts. Did you change it in skin?
$Item->edit_link( array( // Link to backoffice for editing 'before' => ' • ', 'after' => '', ) );
I have this :
$Item->edit_link( array(
'before' => '<div class="action_right"> • ',
'after' => '</div>',
'text' => T_('Edit...'),
'title' => T_('Edit title/description...'),
) );
The categories are no ok. Thnx.
4 sam2kb May 30, 2008 12:57
Remove 'text' => T_('Edit...'),
5 jdkock May 30, 2008 13:34
sam2kb wrote:
Remove 'text' => T_('Edit...'),
Yes ! That was it. Thanks.
6 sam2kb May 30, 2008 13:40
If you want to use a custom 'text' param you must add the image, try
'text' => get_icon( 'edit' ).' '.T_('Edit...'),
7 jdkock May 30, 2008 13:45
That's even better. So i can put my own Edit image there.
8 sam2kb May 30, 2008 13:49
Sure, this is what I used in my skin
'before' => '<span><img src="img/edit.png" height="16" width="16" alt="" /> ',
'after' => '</span>',
'text' => T_('Edit'),
9 jdkock May 30, 2008 14:07
But then you have in the footer of a post your own edit image, and in the footer of a comment an other image.
$Comment->edit_link( '', '', '#', '#', 'permalink_right' );
10 sam2kb May 30, 2008 14:24
But then you can do the same for comment link ;)
Or replace the default edit image in rsc/icons/ and change width and height (if needed) in conf/_icons.php
11 jdkock May 30, 2008 14:33
Yes that's true.
Can i ask you something else.
In the archives page. What put that bullet in front of each month
12 sam2kb May 30, 2008 14:41
Those are default list bullets, you can remove them with
div.boxContent ul li { list-style-type:none }
13 jdkock May 30, 2008 14:50
Aha the same with how i removed the bullets from the sidebar.
On some blog sites i see in the sidebar under the title "Archives" a list (the archive directory). Is this a plugin ?
14 sam2kb May 30, 2008 14:55
It is an Archives Widget, you'll find it on Widget page
15 jdkock May 30, 2008 15:03
Yes i see. But when i install this widget i don't see anything happen in the sidebar. There is still only "Archives".
16 sam2kb May 30, 2008 15:26
Can you start a new thread as archives widget has nothing to do with edit_link image.
Try to add other widgets, upload a fresh plugins/_archives.plugin.php, compare the sidebar code with the code from another skin, check if the archives plugin is enabled.
This is all I can imagine for now.
I don't see the Edit image too ;) because I can't edit your posts. Did you change it in skin?
To make your categories bold open style.css and add this style