Hova
Forum Replies Created
-
Forum: Plugins
In reply to: [Easing Slider] Does the Easing Slider support multi languageHi I’m also faced with the same problem. I have a site with Eng and Por languages.
Or is there an option to perhaps specify fields?
Forum: Fixing WordPress
In reply to: change header image based on language selectedAm using WMPL. Thanks.
Forum: Fixing WordPress
In reply to: change header image based on language selectedPlease refresh this link? http://ipadangola.sycdn.us/
Herewith the amended code, but the image I’m working on is now not showing.<?php
$mylocale = get_bloginfo(‘language’);
if($mylocale == ‘en’) {
?>
<img src=”<?php bloginfo(‘stylesheet_directory’); ?>/images/tagline.png” width=”398″ height=”15″>
<?php
}
elseif($mylocale == ‘pt-pt’){
<img src=”<?php bloginfo(‘stylesheet_directory’); ?>/images/tagline-por.png” width=”422″ height=”15″>
}
?>Forum: Fixing WordPress
In reply to: change header image based on language selectedHi I need urgent help on this site: http://ipadangola.sycdn.us/
I need to switch the logo from English to Portuguese on language switching. please assist, also the icons would need to switch as well to Portuguese. i used this:<?php
$mylocale = get_bloginfo(‘language’);
if($mylocale == ‘en-US’) {
<img src=”<?php bloginfo(‘stylesheet_directory’); ?>/images/tagline.png” width=”398″ height=”15″>
}
elseif($mylocale == ‘pt-pt’){
<img src=”<?php bloginfo(‘stylesheet_directory’); ?>/images/tagline-por.png” width=”398″ height=”15″>
}
?>Forum: Themes and Templates
In reply to: Discrepancy in CSS gradient property in twentyelevenI also have the same problem I just did this rather –>
#access {
background: -moz-linear-gradient(center top , #8D2022, #B13134 1px, #972A2C 25px) repeat scroll 0 0 transparent;
background-color: #8D2022;
}