Someone in my Facebook Designers group posted a link to a fab site: http://webexpedition18.com/articles/useful-css-snippets/ Since I had just put a tutorial up for another group I am in, this came just in time! She was having a problem with the font on IE so here is the new syntax that will help!! @font-face { font-family: [...]
Functions.php add_custom_background(); That is all.
The code couldn’t be easier – but let’s break this down a little bit, shall we? add_theme_support(‘menus’); register_nav_menu(‘secondary’, ‘My Theme’s New Nav Menu’); function another_menu() { wp_nav_menu( array( ‘container_class’ => ‘anothermenu-headerclass’, ‘theme_location’ => ‘secondary’ ) ); } add_action(‘thesis_hook_before_html’, ‘another_menu’); First we need to add support to the theme for additional menus. We need to register [...]
If you are familiar with Blogger, then you will know exactly where I am coming from here. Want to know the quickest way to add a background to your Genesis blog? Simply add a text widget and paste this code into it – replacing your image url, of course: <style type=”text/css”>body {background-image: url(“http://i289.photobucket.com/my album/mybackground.png”); background-position: [...]