Lo?c Levêque
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can I put the search area in the footer?I do that right now…
Forum: Fixing WordPress
In reply to: How can I put the search area in the footer?WOW
It works.
kind of magic…
THANK YOU!
Forum: Fixing WordPress
In reply to: How can I put the search area in the footer?Thank you so much for your reply,
Yes indeed I do have a search area already.
In fact I need to have two different footers. I’ve done that, a new footer with the pasted codes for the search area, footer called “footer2”. I created a new page template, who calls the header and the footer.
The footer, I suppose, is called by
<?php get_footer(); ?>
But I do not know how to call the “footer2”. Must be dead easy, right? Well, it must be… or perhaps not.
Forum: Fixing WordPress
In reply to: How can I delete the “title” of menu items?On the wordpress above, when you put the mouse over the ‘home’, it shows “Home is where the heart is”, black text on yellow bacground.
I do not know how you call these yellow things, but I would like to delete this on my site.
How can I do that?
Please folks, an answer would be very helpful. I’m stuck here.
Forum: Fixing WordPress
In reply to: How can I delete the “title” of menu items?Thank you vtxyzzy,
I do not want to delete the hover properties.
I just do not want the title of an image or a menu title to appear when you stay few seconds on it. I thought it was possible, well, I’m sure it is, but I do not know how.
Thank you any way.
Forum: Fixing WordPress
In reply to: How do I delete mouse over yellow title boxes on images and menu?ok, https://www.fmajeure.com/blog
I would like to know if I have to delete all the
title=””
to be sure that there will not be any text yellow boxes (showing over images or menu) on mouse over.
It must be a very simple thing, but considering that I do not know the exact name for these kind of popups…
Forum: Fixing WordPress
In reply to: XML Parsing Error and IE ?Error Line 155, Column 4: document type does not allow element “h2” here; missing one of “button”, “map”, “object”, “ins”, “del”, “noscript” start-tag
<h2>Drunkboat</h2>
I’m just using the style on the editing panel of the post.
That is the style in the css.
Tell me what’s wrong:
/* post contents */
.post h2, #single_post h2, .page h2 { font-size:16px; line-height:normal; color:#071425; font-weight:normal; background:#fff;}
.post h2 a, .post h2 a:visited, #single_post h2 span, .page h2 span { line-height:120%; display:inline; color:#071425; font-weight:bold; background:#fff;}
.post h2 a:hover { text-decoration:none; color:#071425; }Forum: Fixing WordPress
In reply to: XML Parsing Error and IE ?ok, well:
https://fmajeure.com/blog/windows/
Error Line 181, Column 32: end tag for “ul” which is not finished
<ul id=”recentcomments”>When I look at the Below is the source input I used for this validation:
I cannot see anything wrong. Do you?
I’m lost. big time.
Forum: Fixing WordPress
In reply to: XML Parsing Error and IE ?https://fmajeure.com/blog/drunkboat
VALIDATOR:
Error Line 123, Column 20: document type does not allow element “div” here; missing one of “button”, “map”, “object”, “ins”, “del”, “noscript” start-tag
<div class=”videos”>
Error Line 155, Column 4: document type does not allow element “h2” here; missing one of “button”, “map”, “object”, “ins”, “del”, “noscript” start-tag
<h2>Drunkboat</h2>
So, if I understand well, I’m not allowed to write codes inside a post. What next…
But you said to me few days ago to layout with divs in post with css…
argh
Forum: Fixing WordPress
In reply to: XML Parsing Error and IE ?Ho, well, but that, I suppose, has nothing to do with differences with paddings and margins, between Firefox and explorer, has it?
Forum: Fixing WordPress
In reply to: XML Parsing Error and IE ?<?php
$ua = $_SERVER[‘HTTP_USER_AGENT’];
if (!(ereg(“Windows”,$ua) && ereg(“MSIE”,$ua)) || ereg(“MSIE 7”,$ua)) {
echo ‘<?xml version=”1.0″ encoding=”‘ . get_settings(‘blog_charset’) .'”?>’ . “\n”;
}
?>
<!DOCTYPE html PUBLICetc…
I suppose I delete everything above<!DOCTYPE …
Do I?
Thanks again esmi…
Forum: Fixing WordPress
In reply to: XML Parsing Error and IE ?the other pages are worse, i apparently cannot put divs in post.
Or is it a xml thing.
Any Ideas?
thanks esmi
Forum: Fixing WordPress
In reply to: explorer and post content problemsHi,
It’s just drives me crazy. I’m working on mac, all is ok. I check on pc with explorer, the flash videos are not at the right place. It seems that explorer cannot read the css, or that the css is poorly written (by me). I used divs and css related styles. It works on firefox on PC, but not explorer.
Help please. I’m sure it is a simple thing, but I’been stuck here for three days now.
Have a nice day…
Forum: Fixing WordPress
In reply to: post tags and flash contents showing with search resultsIn fact, what I do have as search result is:
Search results for ‘ films ’ - 7 hit Home * January 28th, 2010 * Posted in projects Get the Flash Player to see this player. var s0 = new SWFObject("/plugins/flash-video-player/mediaplayer/player.swf","n0","150","83","7"); s0.ad [ READ MORE ]
and so on…
Forum: Fixing WordPress
In reply to: post tags and flash contents showing with search resultsThank you very much kz,
If I understand well what’s going on, the post contains flash videos, and for some reason the search results not only take the html text of the post, but the flash descriptions too.
I had a look at the codes in the search.php, and it seems that it just looks like your loop:
<div class=”archive_contents”>
<h2>“><?php the_title(); ?></h2>
<ul class=”archive_meta”>
- <?php the_time(__(‘F jS, Y’,)) ?>
- <?php _e(‘Posted in ‘,); ?><?php the_category(‘ . ‘); ?>
- <?php _e(‘By ‘,); ?><?php the_author_posts_link(); ?>
<?php if ($options[‘author’]) : ?>
<?php endif; ?>
<?php edit_post_link(__(‘[ EDIT ]’, ), ‘<li class=”post-edit”>’, ” ); ?>
<p>“><?php the_excerpt_rss(); ?><span class=”read-more”><?php _e(‘[ READ MORE ]’, ); ?></span></p>
</div>
So, would that be <?php the_excerpt_rss(); ?> to change to <?php the_excerpt(); ?>
?
Thank you again