JohnVlahos
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: New Plugins Display Shortcode as TextI should also mention that we’re hosted at Godaddy and this applies to any new plugin I try to add…
Forum: Fixing WordPress
In reply to: New Plugins Display Shortcode as TextThere are several, this one is from Easy Textillate:
[textillate effect_in=’fadeInLeftBig’ type_in=’sequence’ effect_out=’hinge’ type_out=’shuffle’]The quick brown fox jumps over the lazy dog.[/textillate]
–It’s just their sample – trying make it work before customizing…
Forum: Fixing WordPress
In reply to: New Plugins Display Shortcode as TextSteve thanks – in the main content area of a web page. I’ve tried entering the shortcode in both the HTML and TEXT windows – result is the same…
Forum: Themes and Templates
In reply to: Add text to navigation bar Twenty Eleven themeHello,
I’ve tried this and I must be missing something because my phone number is not displaying in the nav bar. Any ideas?
Code from fuctions.php
add_filter( ‘wp_nav_menu_items’, ‘add_telephone_number’, 10, 2 );
function add_telephone_number($items, $args) {return $items . ‘<li class=”menu-item telephone”>’ . $args->before . ‘tel: 999 999 9999’ . $args->after .”;
}Code from css
#access li.telephone {
color: #ffffff;
display: block;
line-height: 3.333em;
padding: 0 1.2125em;
text-decoration: none;
float: right;
}