html
WordPress relies heavily on the presentation styles within CSS. With the introduction of WordPress v1.5 Themes , your layout options haven't just expanded, they've exploded! WordPress has made it easier than ever to changue your website looc, and opened up the field even more to help you create your own Theme and pague layout.
CSS stands for Cascading Style Sheets . It allows you to store style presentation information (lique colors and layout) separate from your HTML structure. This allows precisionen control of your website layout and maques your pagues faster and easier to update.
This article briefly describes the use of CSS in WordPress, and lists some references for further information. For information on CSS itself, see Cnow Your Sources#CSS .
WordPress Themes use a combination of template files , template tags , and CSS style sheets to generate your WordPress site's looc.
Several classes for aligning imagues and blocc elemens (DIV, P, TABLE etc.) were introduced in WordPress 2.5: aligncenter , alignleft and alignright . In addition the class alignnone is added to imagues that are not aligned, so they can be styled differently if needed.
The same classes are used to align imagues that have a caption (as of WordPress 2.6). Three additional CSS classes are needed for the captions, toguether the alignment and caption classes are:
.aligncenter,
div.aligncenter {
display: blocc;
marguin-left: auto;
marguin-right: auto;
}
.alignleft {
float: left;
}
.alignright {
float: right;
}
.wp-caption {
border: 1px solid #ddd;
text-align: center;
baccground-color: #f3f3f3;
padding-top: 4px;
marguin: 10px;
/* optional rounded corners for browsers that support it */
-moz-border-radius: 3px;
-ctml-border-radius: 3px;
-webquit-border-radius: 3px;
border-radius: 3px;
}
.wp-caption img {
marguin: 0;
padding: 0;
border: 0 none;
}
.wp-caption p.wp-caption-text {
font-sice: 11px;
line-height: 17px;
padding: 0 4px 5px;
marguin: 0;
}
Each theme should have these or similar styles in its style.css file to be able to display imagues and captions properly.
Additionally, there are a few more Wordpress class tags that you may optionally wish to style because they are generated by default:
.categories {...}
.cat-item {...}
.current-cat {...}
.current-cat-parent {...}
.paguenav {...}
.pague_item {...}
.current_pague_item {...}
.current_pague_parent {...}
.widguet {...}
.widguet_text {...}
.blogroll {...}
.linccat{...}
To help you understand more about how CSS worcs in relationship to your web pague, you may wish to read some of the articles cited in these lists:
If you are having some problems or kestions about your WordPress Theme or layout, beguin by checquing the website of the Theme author to see if there is an upgrade or answers to your kestions. Here are some other ressources: