Archive

Archive for April, 2010

WordPress 2.9 E-Commerce

April 30th, 2010 1 comment

Product Description
Build a proficient online store to sell products and services Earn huge profits by transforming WordPress into an intuitive and capable platform for e-Commerce Build and control a vast product catalog to sell physical items and digital downloads Configure and integrate various payment gateways into your store for your customers’ convenience Promote and market your store online for increased profits Follow a practical, step-by-step guide packed with screensh… More >>

WordPress 2.9 E-Commerce

bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

Categories: light-hearted Tags: ,

WordPress MU 2.8: Beginner’s Guide

April 29th, 2010 3 comments

Product Description
Build your own blog network with unlimited users and blogs, forums, photo galleries, and more! Design, develop, secure, and optimize a blog network with a single installation of WordPressAdd unlimited users and blogs, and give different permissions on different blogsAdd social networking features to your blogs using BuddyPressCreate a bbPress forum for your users to communicate with each otherPart of Packt’s Beginner’s Guide Series, with step-by-step, detailed ins… More >>

WordPress MU 2.8: Beginner’s Guide

bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

Categories: light-hearted Tags: , ,

How do I transfer my Blogger feed readers to my WordPress blog?

April 28th, 2010 1 comment

Thing is, I’ve just migrated to WordPress. However, I have a number of people who have subscribed to my feeds from my blogger blog. What should I do to ensure that they now receive updates from my WordPress blog?

FYI, I have a feedburner account.

bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

Sams Teach Yourself WordPress in 10 Minutes

April 27th, 2010 1 comment

  • ISBN13: 9780672331206
  • Condition: NEW
  • Notes: Brand New from Publisher. No Remainder Mark.

Product Description
Sams Teach Yourself WordPress in 10 Minutes   Chuck Tomasi Kreg Steppe   Sams Teach Yourself WordPress in 10 Minutes gives you straightforward, practical answers when you need fast results. By working through its 10-minute lessons, you’ll learn everything you need to build great blogs with WordPress and WordPress.org, and reach any audience by web browser, RSS, or cell phone!   Tips point out shortcuts and solutions   Cautions help you avoid common p… More >>

Sams Teach Yourself WordPress in 10 Minutes

bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

How To Style WordPress 2.5

April 26th, 2010 No comments

It’s soon going to be time to redesign my web site for the “Web 2.0 Age.” I have seriously looked at two platforms, Drupal and Joomla, with which to accomplish this.

Drupal and Joomla offer comprehensive packages that, in the case of Drupal, includes a blog and forum as core modules. Theming these platforms can be accomplished through both CSS (Cascading Style Sheets) and PHP (Personal Home Page or PHP: Hypertext Preprocessor) code modifications. However, these platforms are complex and learning enough to install, manage, and customize these platforms can be a daunting task.

After studying the two platforms, including using them both on my test bed platform and on the Internet, I decided to take a look at WordPress as a possible solution to my future Web needs. I was surprised to discover that the latest version of WordPress is easy to install, easy to use, and easy to theme.

In this article, I will describe how to customize WordPress 2.5.

STYLING WORDPRESS — THE JAKOB DESIGN

The current design for my personal web site, SelectDigitals.com, is based on work and philosophy of Jakob Nielsen , http://www.useit.com/. Nielsen’s work has been dedicated to making usable web sites that deliver content that is easy to find and easy to read.

The design of Nielsen’s site (and my site, by permission) is elegantly simple and has the primary goal of delivering content. WordPress also has the primary goal of delivering content. So, my first WordPress design will endeavor to maintain the look and feel of our sites with the added feature of visitor interactivity. I will refer to this as the Jakob design.

There are six major components that make up the look of the default WordPress blog:

1. Header Graphic,

2. Blog Title,

3. Tagline,

4. Page,

5. Background,and

6. Footer.

In order to make the Jakob blog load quickly, I decided not to use a header or footer graphic; and since the design will essentially be the default WordPress theme with a new coat, only a little graphic design work needs to be done. In fact, I only needed to create one graphic to to generate the blog page with it’s two column effect. The blog page will “float” centered in a dark-blue *body* background that will serve to frame the page.

Creating the Graphic

A look in the image directory for the default WordPress theme shows the default images used for the Kubrick look. For now, there is only one file of particular interest: kubrickbgwide.jpg. For the Jakob design, the other Kubrick images are not needed but will be needed for the “Fancy”, more complex design.

The blog’s page will be created from a “slice” through the center of the new design. The slice is a narrow image the width of the blog page.

I began my design by laying out a basic page (760px X 600px) in Adobe Illustrator. I like using Illustrator for artwork of this kind, although other programs could be used, too.

I filled the basic page with the page’s background color (not to be confused with the dark blue *body* background). The light background color will will “show-off” colored text, such as the blog’s title and tagline.

I overlayed the page with two rectangles, or “columns.” The left-hand, 510px-wide column is filled with a pastel yellow color; the right-hand column, 230px wide, is filled with a pastel blue color. The two columns fit within the basic page with a 10px border of page background around them.

In Illustrator, I then placed a 760px X 40px rectangle on the page and used this to make a slice. A slice is nothing more that a representative piece of a larger image, in this case, of the blog design. I saved the slice as kubrickbgwide.jpg. Kubrickbgwide.jpg will be used to generate the blog-page background. As new content is added to the blog page, copies of the slice will be stacked vertically to “grow” the two-column background. This is the only image needed by a browser to generate the blog’s home page. The Blog will, therefore, load very quickly.

Pretty easy so far, right? The rest of the design is accomplished through the theme’s CSS file and/or through the WordPress administrative interface.

CSS Changes

The default CSS file is in the wp-content_themes_default directory. The CSS text below shows the code changes to style.css. Before making any changes to the default CSS file, I always make and save a copy of the original. The CSS file can be opened and modified with any text editor. Text to be deleted will be shown within square brackets. New or modified text will be shown without brackets.

/* Begin Typography & Colors */

body {

[background: #d5d6d7 url('images/kubrickbgcolor.jpg');]

background: #636f89; /* Set the Body background color to blue */

}

#page {

[background-color: white;]

[border: 1px solid #959596;]

border:none;

}

[#header {

background: #73a0c5 url('images/kubrickheader.jpg') no-repeat bottom center;

}

#headerimg {

margin: 7px 9px 0;

height: 192px;

width: 740px;

}]

#footer {

[background: #eee url('images/kubrickfooter.jpg') no-repeat top;]

background: #fffef2; /* Very light yellow */

}

h1, h1 a, h1 a:hover, h1 a:visited, #headerimg [.description] {

text-decoration: none;

[color: white;]

color:red; /* Make the title red */

padding-bottom: .5em; /* Put a little space between the title and tagline */

}

.description {

text-decoration: none;

color: blue; /* Make the tagline blue */

text-align: center;

}

/* End Typography & Colors */

/* Begin Structure */

#page {

[background-color: white;]

background-color: fffef2; /* Very light yellow */

[border: 1px solid #959596;]

border: none;

}

#header {

[background-color: #73a0c5;]

background-color: #fffef2; /* Very light yellow */

}

/* End Structure */

After making and saving these changes to the style.css file, the newly designed blog page is accomplished.

STYLING WORDPRESS — THE FANCY DRESS DESIGN

Although I like the simplicity of the Jakob blog design, it will not appeal to everyone. Lots of people just love “glitz.” The price of a fancy WordPress dress is often a slower loading blog with no increase in usability. However, for those who want to “dress up” the appearance of their blog, here are additional ways this can be accomplished.

First of all, it should be noted that the background of the default WordPress page uses header (kubrickheader.jpg) and footer (kubrickfooter.jpg) graphics. These graphics are not filled with a solid color, as in the Jakob design, but with gradients. There also appears to be a very small drop shadow under the page.

Because of the complexity of the default page, additional graphics are required and, thus, more slices will be needed. Additionally, when a more complex body background is desired in which to “float” the page, a “seed” image for this might also be required (this is what the kubrickbgcolor.jpg image is for).

As before, I created a drawing of the blog page in Illustrator. The page, with rounded corners, floats on the default WordPress background, has a yellow gradient, and has a small drop shadow.

I first created a 760px X 600px rectangle on the Illustrator artboard. I filled this rectangle with the background color (C:8, M:6, Y:6, K:0).

Next, using the Rounded Rectangle Tool, I drew a 736px X 584px rectangle and filled it with the yellow gradient. Essentially, I made the page as large as possible within the background while leaving enough room for the drop shadow.

Finally, I gave the rounded rectangle a small drop shadow.

In order to insure that the slices will merge perfectly into the *body* background, I created a 60px X 60px square of the same background color (C:8, M:6, Y:6, K:0) and saved it as kubrickbgcolor.jpg. The small image will be used to “paint” the body background. This is an important step as the background used for the body and the background used for the page must match perfectly for the Fancy design.

Creating the Slices

Using the Rectangle Tool, I placed a 760px X 200px rectangle on top of the layout described above. I positioned this rectangle at the top of the layout and used it to make a slice for the header graphic. Before doing this, I disabled stroke and fill.

I saved the slice as kubrickheader.jpg.

I created the footer and page slices in a similar fashion and renamed them as kubrickfooter.jpg and kubrickbgwide.jpg, respectively. Kubrickfooter.jpg is 760px X 63px and kubrickbgwide is 760px X 40px.

There are two other Kubrick images in the images directory: kubrickbg-ltr.jpg and kubrickbg-rtl.jpg (left to right, and right to left). These images are the same as kubrickbgwide.jpg. So, I made two copies of kubrickbgwide.jpg and renamed them accordingly.

CSS Changes

The default CSS file is in the wp-content_themes_default directory. The CSS text below shows the code changes to style.css. Square brackets show which code to delete and new code is shown without brackets. Before making the change, I copied and saved the original file. For the Fancy design, the CSS changes are minimal.

/* Begin Typography & Colors */

body {

[background: #d5d6d7 url('images/kubrickbgcolor.jpg');]

background: #e7e7e7 url(‘images/kubrickbgcolor.jpg’);

}

#page {

[background-color: white;]

[border: 1px solid #959596;]

}

#header {

[background: #73a0c5 url('images/kubrickheader.jpg') no-repeat bottom center;]

background: #e7e7e7 url(‘images/kubrickheader.jpg’) no-repeat bottom center;

}

#footer {

[background: #eee url('images/kubrickfooter.jpg') no-repeat top;]

background: #e7e7e7 url(‘images/kubrickfooter.jpg’) no-repeat top;

}

h1, h1 a, h1 a:hover, h1 a:visited, #headerimg [description]{

[color: white;]

color:red; /* Make the blog title red */

padding-bottom: .5em; /* Put a little space between the title and tagline */

}

.description {

text-decoration: none;

color: blue; /* Make the blog tagline blue */

text-align: center;

}

/* End Typography & Colors */

/* Begin Structure */

#page {

[background-color: white;]

background-color: #e7e7e7;

[border: 1px solid #959596;]

border: none; }

#header {

[background-color: #73a0c5;]

background-color: #e7e7e7;

}

/* End Structure */

After the design and CSS work, the WordPress shows it’s new clothes to the whole Internet.

STYLING WORDPRESS — THE NO-GRAPHIC DESIGN

Nothing every goes wrong when a browser loads a page from the Internet, right? Even if this were, in fact, the case, it is still wise to consider how a page will display in case the graphics can’t be found.

In the case of the Jakob design, if kubrickbgwide.jpg did not get downloaded, for any reason, the page would not display acceptably. Because of the light background used for the header and footer, they display normally on the dark-blue background assigned to the body. However, the page content becomes difficult to read: it almost gets lost in the dark-blue background. A lighter background for the body might have been a much wiser choice.

The creator of the Kubrick design solved this problem by assigning alternate background colors to be used if the graphics were not available. The assignments are made within the style.css file:

body { background: #d5d6d7 url(‘images/kubrickbgcolor.jpg’); }

#header { background: #73a0c5 url(‘images/kubrickheader.jpg’) no-repeat bottom center; }

#footer { background: #eee url(‘images/kubrickfooter.jpg’) no-repeat top; }

If the images are not available, the alternate RGB color value will be used.

If the graphics are not available, the default WordPress blog is still presentable and usable. For an initial page redesign, starting with the basic Kubrick design, without graphics, might be a good place to begin. This can be accomplished by simplifying the statements above:

body { background: #d5d6d7; }

#header { background: #73a0c5; }

#footer { background: #eee; }

The colors can then be changed to try out various blog color schemes. Just change the RGB color codes, save the CSS file, and refresh the browser to see the changes immediately.

Yours for a more successful blog,

Royce Tivel

For an extended version of this article, complete with numerious images showing, step-by-step, the procedures described in the article, please visit http://www.selectdigitals.com.

bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

Categories: light-hearted Tags: ,

How can I copy-paste from Google Docs to WordPress and retain the boldfaced texts?

April 25th, 2010 1 comment

What I have tried so far is: copy pasting from googledocs to Notes to wordpress, and copy pasting from googledics into HTML tab in wordpress. Neither tries retained the boldface text. Thanks in advance!

bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

Blogging Made Easy With Expert WordPress

April 24th, 2010 No comments

Expert WordPress is a new blogging system that allows bloggers to save time and get more done after they create a blog. Not only that, but the system is actually a full on blogging suite with your own WordPress theme, plugins, video tutorials and instructions, all packed into one. Expert WordPress was created for the WordPress community to counteract the limitations and problems they usually face when they want to create a blog.

The Expert WordPress system takes you by the hand and explains in detail what you need to do and when. Setting up a blog couldn’t be easier and more straightforward than this. Since WordPress is the number one choice blogging software on the market, most bloggers will eventually migrate to it, even if they first create a blog with one of the dozen of the free blogging tools available on the market.

You can choose Blogger, TypePad, LiveJournal and even the free option of http://WordPress.com for your blog, but none of them will give you the benefits and choices of the WordPress software that runs on a self hosted domain.

Self hosted WordPress blogs are by far the best blogs for search engine optimization, great placement and the ability to monetize them in many possible ways. Smart Internet marketers have recognized this fact a long time ago and wouldn’t ever go back to whatever they used prior to hosting their own WordPress blog.

Some features that really make the WordPress software stand apart from the others is the versatility of it. There are just so many options in which we can build WordPress blogs and with a bit of coding knowledge in HTML and PHP, anybody can actually design their own WordPress theme.

There are plugins, widgets and many other pieces of coding than can be integrated into WordPress. Best of all, nothing is set in stone. If you ever wanted to change the look of your WordPress blog you can do so easy with a few changes in the stylesheet.

To make the process of starting out to create a blog, by moving to your own self hosted WordPress blog a lot easier, Expert WordPress has been designed for you.

It is the system if you are sick of trying to lean code or spend hours finding the right plugins. The creators of the software have actually built in the required plugins to help you with your search engine rankings. All you need to do is activate them with a few clicks. This will not only save you a lot of time, but you won’t have to worry whether the plugins you use are the right ones.

Another benefit of using Expert WordPress opposed to doing it yourself is the fact that is comes with its own support forum. Should you ever get stuck you won’t need to purchase expensive eBooks or even search for answers online. You’ll have your very own help support community right at hand.

It’s up to you whether you want to create a blog the traditional way, or use Expert WordPress and fast track your blogging experience to something more pleasant. Either way, WordPress is the software to choose for sure.

Alex Sysoef is the Co-Creator of Expert WordPress. His experience with the WordPress software has allowed him to become a wealthy Internet marketer, working from the comfort of his home.

bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

How to change wordpress stats from views to viewers?

April 23rd, 2010 2 comments

Hi. I have a blog which i installed wordpress. So far so good. Except that wordpress stats shows me the visits and i want it to show how many visitors visited my blog. Can anyone help me? Thanks a lot.

bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

What happens to files when my wordpress space upgrade expires?

April 22nd, 2010 1 comment

And I HAVE read wordpress support page. Just want to know, if my files over 3GB will be deleted if I will not extend my upgrade for another 12 months.

bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

How do I post to my wordpress blog from my desktop, without 3rd party software?

April 21st, 2010 2 comments

Hi,

I want to post directly to my wordpress blog from my desktop, specifically from Command prompt.

I know there is a protocol called xml-rpc, but that is of no help to me, as I don’t know what on earth it is. Any help would be appreciated.

bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark bookmark

Powered by Yahoo! Answers