davidandre
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problems with sidebar.phpHi,
yes it is possible but i thing it is an css issue. check your css file first.Forum: Fixing WordPress
In reply to: How Can I Add PHP Code For Date Variables Into A Post?Hi jase,
i think if you change return date(‘F, Y’); to
return date(‘M’);
it will return just the month.
DavidForum: Themes and Templates
In reply to: how to program design in wordpress?Forum: Themes and Templates
In reply to: css good in firefox and safari, but not internet explorer 6hi,
it is about time to forget explorer6..it is oldddddddddddddddd.
but just it case it might helps:
https://meyerweb.com/eric/tools/css/reset/<img src=”<?php bloginfo(‘template_url’); ?>/style/your folder/yourimage.png”/>
i always put my images in a folder “image” si for me it would be<img src=”<?php bloginfo(‘template_url’); ?>/style/your folder/yourimage.png”/>
hope it helps,
you can put your image in a div as well to css better so
<div id=”band_top”><img src=”<?php bloginfo(‘template_url’); ?>/style/yourfolder/yourimage.png”/></div>bye
Forum: Themes and Templates
In reply to: If Else stops working after 2-3 choiceshi,
i v just seen a little mistake:
it s:
<?php if ( !in_category(‘3’) ): ?>
not
( in_category (3) )
for all id…hope it helps,
byeForum: Fixing WordPress
In reply to: Include blog post in page<?php query_posts(‘category_name=sponge’);?>
try that,hope it helps,
byeForum: Fixing WordPress
In reply to: Changing code, but sometimes nothing happensclear the cache of your browser! sometimes it can foul you a lot…
Forum: Fixing WordPress
In reply to: need help asap!!yeap with explorer as well
but this site is very slow…..check your function.php . something is wrong i thinkForum: Fixing WordPress
In reply to: need help asap!!yeap perfectly at least with chrome and mozilla , i ll tell u with explorer in a moment
Forum: Fixing WordPress
In reply to: need help asap!!what do u mean?
i can see your footer perfectlyHiya,
if <?php twentyten_posted_on(); ?> is inside the loop try:
<?php if ( !in_category(‘3’) ): ?>
<?php twentyten_posted_on(); ?>
<?php endif; ?>if outside the loop.
<?php
$post = $wp_query->post;
if ( !in_category(‘3’) ) {
twentyten_posted_on();}
?>not sure 100% but never know:)
byeForum: Fixing WordPress
In reply to: wp_pageshi,
i am not sure i get the idea.but don t put the list ans the picture in the same ul. use a div then inside this div put the <?php wp_list_pages(‘include=52’);?> and the pictureForum: Fixing WordPress
In reply to: OHow to only list grandchildren when on their direct parent pageForum: Fixing WordPress
In reply to: wp_pagesput an <ahref> before the img then close it and close the ul.
hope it works.ciao