Category Archives: Site Related

Fixed Footer’s

Been looking at how the footer and header interacts with the rest of the code within WordPress.  I have wanted to figure out a way to keep my footer always showing and use it to display some imaging that I … Continue reading

Posted in Site Related | Leave a comment

Slight Update on Border-Radius

Was looking at the border-radius properties and realized you could impliment them non-equidimensionally. In other words you can set the horizontal and verical radii independently. So instead of just listing the code as: border-radius: 5px; You can set each corner … Continue reading

Posted in Site Related | Leave a comment

CSS: Transform and More Animation

I have a little tagline along the top header of this site. I played around with some CSS on it for awhile and came up with a simple rotated tranform that places it on the page with a 10 degree … Continue reading

Posted in Site Related | Leave a comment

Animation Using CSS 3

I have been playing around with Javascript and jQuery using fadein and fadeout functions but decided to try some new CSS code for fun, just to see what it did. So I added some animation on my main wrapper that … Continue reading

Posted in Site Related | Leave a comment

CSS Box-Shadow and Border-Radius Updates

Added some new code to my CSS. I’ve been using border-radius on another site of mine and decided to play around with the box-shadow to see what I could get it to do. Strangely enough, while first playing around with … Continue reading

Posted in Site Related | Leave a comment

Added Text Shadow Effect on Header

Played around with the text-shadow code in the CSS file. The basics of the text-shadow are: text-shadow: h-shadow v-shadow blur color;  You can use negative values for the h and v shadow.  You can also add more than one of … Continue reading

Posted in Site Related | Leave a comment

Tranferred and set up the site on a local server

So, today I exported the database from my remote server and then imported it to my local server. FTP’d all the files to my local server, went into the wp-config.php file and changed the settings that had site url in … Continue reading

Posted in Site Related | Leave a comment

Some more tweaks

I’m beginning to figure out how WP works. Need to continue to learn more about the API because the real value in it is that you can change it fairly easily and create your own themes. Anyhow, I figured out … Continue reading

Posted in Site Related | Leave a comment

Played around with the style sheet today

Simple stuff, just making adjustments in the style.css file while using Firebug to pin down the changes I wanted to make. I am trying to figure out how to keep the html from getting stripped out of the biographical info … Continue reading

Posted in Site Related | Leave a comment

Controlling how posts are displayed in WordPress

So, I spent awhile researching how to ONLY list posts from certain categories on the homepage.  The homepage, by default, lists the 10 most recent posts across all categories.  I want my homepage to be about web development, so I … Continue reading

Posted in Site Related | Leave a comment