Category Archives: Wordpress Themes

New Theme, small updates…

Ok so if you visit my site you know I like to change looks now and then, while the last one I used was great, I decided I needed a change. I decided to go with Bueno, a nice looking WordPress theme. I changed the color a bit for the default mode (comes with different color schemes), to something that I liked better, and took out the dots in the background as it comes originally with polka-dots.



Aside from this, I am still looking for a new Job, my sister is an idiot, and its hot in my house… yep, pretty much covers it.

New Layout

Ok I needed a change and decided to go with this nice theme which you can get the link to who made it at the bottom of the page. I am going to customize it a bit to my liking at least color and background wise I think, need to look at the dos and donts on this theme 1st but unless there is something by the original creator that states not to change anything, I shall be changing something. I think the color is ok but I want something else, something more, not sure what but something.

Mobile version of my blog…

Ok so I found this cool plugin to make my website phone compatible. I tested it on my phone, a MyTouch 3G and it works great. Media is removed but thats ok. I don’t think anyone comes here lol, but now I can access my site better if need be from my phone. If anyone is looking for a way to make their own site mobile friendly, search the plugins from within your WordPress plugin dashboard page and search WordPress Mobile Pack and use that. You get 4 color themes, red, blue, green and base (which is a black white theme).

Oh the joys of wordpress…

Well its been a few days since I migrated to wordpress and everyday I find another feature, another skin, plugin, etc that makes me like wordpress even more. HOWEVER there was one issue I was having, sometimes depending on the skin I was using, the alignment feature would not work correctly when inserting images. I finally searched google and found out why. In order for the alignment feature in the Media manager (the thing that opens when you click to add a image or video or whatever) you must have this code inserted into your stylesheet:

img.centered {
display: block;
margin-left: auto;
margin-right: auto;
}
img.alignright {
padding: 4px;
margin: 0 0 2px 7px;
display: inline;
}
img.alignleft {
padding: 4px;
margin: 0 7px 2px 0;
display: inline;
}
.alignright {
float: right;
}
.alignleft {
float: left;
}

So if this is an issue your having, try and add that into your stylesheet. So thanks to Daniel Scocco and his post located >here< this issue has been resolved on a few themes I had tried.