Posts Tagged ‘CSS’

Content & Design Dilemma

Wednesday, June 11th, 2008

About this Blog…Status

For a few weeks, I left the previous post “first-page visible” for my nephew and his colleagues in his school district. And, while they checked out those wonderful online resources, I had time to contemplate my blogging navel.

“Always Learning”, I realized that a dilemma diligently dogged my approach to this blog:

The “Content vs. Design Dilemma”.

Intrigued by the opportunity to improve my CSS skills and learn PHP, I neglected content. Now, inside my Wordpress Admin panel rest over 20 unpublished drafts of blog posts!

Sheesh.

So, I’m returning to content, and I’m excited about that! I mean, what’s a blog without content? Design still awaits me as a project, and I look forward to changing the look of this blog. Plus, I need to update to WordPress 2.5.1, and plan to do that this weekend.

However, beginning today, my focus is on content, first, then design.

Yes, I’m “Always Learning!”

  • Share/Bookmark

CSS Style for WP Post Title

Saturday, May 3rd, 2008

It’s Not About WordPress, But It Is
What does THAT post subtitle mean? My blog’s tag line is “Always Learning”. In this space, I want to share what I have learned in the past, what I am learning now, and what I hope to learn in the future.

Currently, it may seem like I’m obsessed with WordPress while I set up my blog. I’m not, really. No, I’m not. I’m not! Seriously, what fiddling around in WordPress helps me with includes practicing my basic CSS skills, and encouraging me to learn PHP.

My local public library loves this. I’m requesting books like crazy from throughout the library system. When I go to my local branch to pick up the books, I’m charged a 25 cent handling fee for each book. I enjoy supporting my public library system, so no bother about the fees.

However, what has bothered me is something about my blog: The post titles were not left justified. Finally, I found the style element I needed to edit:

h2.pagetitle {
margin-top: 30px;
text-align: center;
}

<< || Changed to: || >>

h2.pagetitle {
margin-top: 30px;
text-align: left;
}

I’m happy, now, and can move on to further customizing the Kubrick theme, claiming it as my own.

As more of my writing and instructional design projects continue to move to the Web, I’m grateful to WordPress for giving me a great sandbox to play in and improve my CSS, JS, and PHP skills, and to keep me “Always Learning”!

  • Share/Bookmark