redirect after login

A common question I’ve seen is how can you redirect a user to a specific URL after they login to WordPress. Maybe you want to hide the Admin Dashboard from your users, so redirecting them to the home page after logging in is a great way to do this. Just place the below code in …

print css with table header and footer

http://csscreator.com/node/35077   <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd” > <html xmlns=”http://www.w3.org/1999/xhtml” > <head> <title>Print the footer</title> <link rel=’stylesheet’ href=’printfootscreen.css’ type=’text/css’ media=’screen’> <!–This will be only used when the page will be printed–> <link rel=’stylesheet’ href=’printfootprint.css’ type=’text/css’ media=’print’> </head> <body> <div id=’container’> <!–the table below close after the closing tag of the tbody–> <table …