1 kskhater Dec 12, 2005 08:34
3 kskhater Dec 15, 2005 11:09
Yes, but where is the one for the sidebar? I'm having problem translating the PREVIOUS | NEXT in the sidebar. I translated evey NEXT and PREVIOUS in the .po file but the one in the sidebar refuse to show in Arabic.
Please see the sidebar in my Arabic blog:
Thanks for your help.
4 personman Dec 15, 2005 14:53
It looks like the Kubrick2evo skin defines the words that go there in the sidebar, rather than letting the default translation come through. It should be easy to fix. Find this code in /skins/Kubrick2evo/_main.php:
<?php posts_nav_link( ' | ', '< '.T_('Previous'), T_('Next').' >' ); ?>
and change it to:
<?php posts_nav_link(); ?>
5 kskhater Dec 16, 2005 08:00
Thank you personman,
It worked and I need to ask you one more favor.
Where is CSS class to control this. I used this code:
<h4><?php echo posts_nav_link(); ?></h4>
But no matter how small I make h3 fontsie. It does not seem to affect it.
6 personman Dec 16, 2005 14:39
This should work:
#bSideBar h4 {
font-size: 50%;
}
7 edb Dec 16, 2005 15:44
Also
<?php <h4><?php echo posts_nav_link(); ?></h4>
isn't right. It should be
<h4><?php echo posts_nav_link(); ?></h4>
The posts_nav_link() function is defined in /b2evocore/_functions_bposts.php