TimoElshof
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Hide Contact form on submitSee previous post, solution found: .wpcf7 .wpcf7-mail-sent-ok {visibility:hidden;}
Forum: Plugins
In reply to: [Contact Form 7] Hide Contact form on submitHello,
In order to this topic I would like to ask the following question? Is it possible to hide the ‘message sent’ notification which is generated after submitting the form by Contact Form 7? I don’t know what to do, I tried to inspect the element but without any result
This is the URL of my site:
http://www.contentconstructors.nl/contact/This is the code I tried to use for the ‘message sent’ notification (green borders)
.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok.style {
display: none;
}Please advise.
Forum: Plugins
In reply to: [Simple Job Board] Pagination of SJB moves over menubarEDIT. SOLVED:
.sjb-page * {
z-index: 0;
}Please close this ticket.
Forum: Plugins
In reply to: [Simple Job Board] Pagination of SJB moves over menubarEDIT: Has it something to do with the Z-index?
Forum: Plugins
In reply to: [Background Manager] Latest version 1.2.2 conflicts on iPhone and iPadHi Myatu,
Thanks for the feedback. Have a nice weekend!
Forum: Themes and Templates
In reply to: Remove You are here: Home from canvas themeAndrew Nevins,
I will think about it.Forum: Themes and Templates
In reply to: Remove You are here: Home from canvas themeDoes anybody know which .php-file I need to translate ‘you are here’?-breadcrumb in the Canvas theme?
Thank you remix, I have already read this documentation. When I paste the code in my Twenty Eleven child theme, I get the so called white-screen of death 🙁
@waterhead
I’m trying to replace the default menubar as well. Did you already find a solution?Where can I find the documentation or can you help me please?
Same here…please help!
Forum: Plugins
In reply to: add qTranslate langs to headerI did it in the CSS:
#headerMenuSystem li { float:left; width:auto; padding:0 10px 0 0; }
Forum: Plugins
In reply to: add qTranslate langs to headerThanks! I removed the bullets in my CSS with:
#headerMenuSystem { list-style: none; }
Do you know how to display the languages next to each other/horizontal?
I found it:
Add this code to your header.php:
<?php
global $q_config;
if(is_404()) $url = get_option(‘home’); else $url = ”;
echo ‘<ul id=”headerMenuSystem”>’;foreach(qtrans_getSortedLanguages() as $language)
{
$link = qtrans_convertURL(”, $language);if($_SERVER[“HTTPS”] == “on”)
$link = preg_replace(‘#^http://#’,’https://’, $link);echo ‘<li class=”menu_item”><a href=”‘.$link.'”‘;
echo ‘ hreflang=”‘.$language.'” title=”‘.$q_config[‘language_name’][$language].'”‘;
echo ‘><span’;
echo ‘>’.$q_config[‘language_name’][$language].'</span>’;
}echo ”;
?>Then add to CSS:
/* flags on left side */
#headerMenuSystem { position:absolute; top:30px; left:40px; }/* flags on right side */
#headerMenuSystem { position:absolute; top:30px; right:40px; }Forum: Plugins
In reply to: add qTranslate langs to headerThanks, this helps! Can you help me with removing the bullets? I also would like to have flags (‘images’) in php? Can you help me with that as well?