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…


von Joern
Keine Kommentare

to insert an add in index.php under the category bar you need to find this line:<div id="front-list">just directly under this line youput this code (try the add code from your header first):<div style="margin: 5px auto 10px;text-align:center;"><script type="text/javascript"><!--google_ad_client = "ca-pub-your 468x60…


von Joern
3 Kommentare

With the release WordPress 3.2 you will get a new default theme called Twenty Eleven, based on the popular Duster theme. Rotating header images, post format support, and more. So upgrading to 3.0 will install this new theme to your…


von Joern
Keine Kommentare

right, this part in header.php generates the category bar in index, archive or post, whatever you select.Important here is $postcat = get_settings( "ar_categories" )means the theme get's the categories from the options settings in your dashboard.The admin menu you see…


von Joern
Keine Kommentare

can't see it on your site in the moment.First I would try to set in this line:Code:$randompost = $wpdb->get_results("SELECT ID FROM $wpdb->posts WHERE post_status = 'publish' AND post_type = 'post' ORDER BY RAND() LIMIT 12");the LIMIT to 18Code:$randompost = $wpdb->get_results("SELECT…