I need a wordpress theme built for one of my sites.... I just installed wordpress into a subsection and I need the wordpress template to match my current site. I will give someone an empty template and job is to make it work with word press..... I will be dropping word press right in the center of the tamplate so it should be fairly easy.... Post or PM asking price Will pay by: PAYPAL
I can help you out for $50-75 depending on complexity of the design. I have done a few designs can provide portfolio on request.
If you don't end up finding anything here that you like, take a look at RentaCoder.com, I've been using them and I'm having a custom Wordpress theme made for me right now. I've been pretty happy with their services.
I was able to come up with something.... I really can't believe how easy it was after I started playing with it: http://www.longislandexchange.com/press/ Anyone know how I can get wordpress modrewrite to include my "www" in the url?
Yes, Wordpress is awesome and it's amazingly easy. You can hop online irc.freenode.net #wordpress to talk with any devs if you need to. I'm a regular there and I talk to them all the time. Good people there.
http://www.invisionblue.com is my website. I recently made www.gonursing.net which is powered by wordpress. Let me know if you're interested.
you can change the url from WP options: WordPress address (URI): Blog address (URI): and you can use mod_rewrite to Redirect 301 from yourdomain.com to www.yourdomain.com RewriteEngine On RewriteCond %{REQUEST_URI} ^/press$ RewriteCond %{HTTP_HOST} ^longislandexchange.com RewriteRule (.*) http://www.longislandexchange.com/press/ [R=301,L] RewriteCond %{HTTP_HOST} ^longislandexchange.com RewriteRule (.*) http://www.longislandexchange.com/press/$1 [R=301,L] Code (markup): i hope i got it right as is almost 2am here and writing from memory