go41

the info you need to know


von Joern
Keine Kommentare

hi, welcome backthe background of the text in the slider is indeed an overlay, it's an image actually!In your style.css the div class="info" tries to load this 'transparent-bg.png' image:#myslider .ui-tabs-panel .info{ position:absolute; top:240px; left:0; width:610px; height:70px; background: url('images/transparent-bg.png');}So what you need is this transparent-bg.png in your .../themes/arthemia/images/ folder on the…


von Joern
Keine Kommentare

As you can see I am displaying the first posts excerpt here in this bbPress forum by runningmake_excerpt(get_post_text($post->post_id));and the last answers excerpt by usingmake_excerpt( get_post_text( $topic->topic_last_post_id ) );The problem arising is that with only one post it will display the text twice, as the first post is also the last…