boing
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Staying logged in across multiple Blogsi’m interested finding solutions for the same problem.
can i set 1 cookie for multiple blogs for the same domain address?
Forum: Fixing WordPress
In reply to: Special alphabetic displayTnq for your reply – thats what i was searching for… Tnq again.
Forum: Fixing WordPress
In reply to: Special alphabetic displayI see it’s a little difficult to do something like this ??
-ok – but there is a way to show in a topic only the posts that starts in the title with “A” for example?
Orin – tnq for that – resolved my problem very fast ??
Forum: Your WordPress
In reply to: powered by wordpress–can i remove it?modify your themes files…that’s the place u need to see.
Forum: Your WordPress
In reply to: My new website…Any other opinions? Tnq…
Forum: Your WordPress
In reply to: Please check out my blog/themeyour problem comes from an float:left command in css.
Forum: Fixing WordPress
In reply to: no email notification for commentshave u search in the bulk(spam directory) for it – it can be there?
Forum: Fixing WordPress
In reply to: image as buttons with atributes???you can use classes or id’s for this like this:
For the html:
<div id=”imagebutton”>link</div>For css:
#imagebutton a {
background-image: url(/img/some-image.gif);
}
#imagebutton a:hover {
background-image: url(/img/some-image-over.gif);
}Using this style, only the links in the “imagebutton” id will be changed in your special buttons.
Forum: Your WordPress
In reply to: My new website…Hy there again and let me explain some nice thinks i have used in my template…
Again – about the java – it’s only for IE – it’s working fine without it in all the other browsers.
About the header+nav – i have addet him in the css:absolute . Thats why you see him in the bottom part of my source. This move has made special for Google – the first think that will be indexed it will be the content.
I will try to add the header images in a css file, like u said. Only to find some free time.
Tnq again.
Forum: Your WordPress
In reply to: My new website…It won’t be next week.
Ok, but for that templates exists – for fast changing design. ??
Forum: Fixing WordPress
In reply to: image as buttons with atributes???the images are addet in css … ??
a {
background-image: url(/img/some-image.gif);
}
a:hover {
background-image: url(/img/some-image-over.gif);
}Forum: Your WordPress
In reply to: My new website…Tnq for your fast reply.
1. The nav it’s css based, but in IE it’s not working properly – i had to add that java. I don’t know how do you see the dropdown menu, but i see it ok… pls if u can explain a little bit more your advice.
2.I’m not using h1 in the header – it’s not soo important to me. Instead, i am using it at post titles. If u can disable the style sheet – u will see how the code is displaying the page.
3.Tnx for that – after changing the text-align=justify – the copyright have moved in the left part. Now it’s ok.
Tnq again for your reply.
Forum: Your WordPress
In reply to: My new website…ups – double post… delete this one
Forum: Fixing WordPress
In reply to: Drop down posts from a categorySimple – use this code:
<script language=”JavaScript” type=”text/JavaScript”>
<!–
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+”.location='”+selObj.options[selObj.selectedIndex].value+”‘”);
if (restore) selObj.selectedIndex=0;
}
//–>
</script><select name=”category” onchange=”MM_jumpMenu(‘parent’,this,0)”>
<option value=””>Other entries in my site…</option><option value=””>———————————–</option>
<?php query_posts(‘category_name=YOURCATEGORYNAME&showposts=4’); ?>
<?php while (have_posts()) : the_post(); ?>
<option value=”<?php the_permalink(); ?>”><?php the_title(); ?></option>
<?php endwhile; ?>
</select>