Skip to content

Archive Category 'Wordpress'

Space Between posts in Wordpress
Changing the space between entries wordpress.

In certain themes Wordpress the posts can be very together one another. Or even a separation is necessary to insert a drawing. Through CSS we can raise it.

. Post (
padding-bottom: 20px;
)

Simply by changing the value we want.

We can also change the space between the title and content of the post

. storytitle (
padding-bottom: 20px;
)

Horizontal line in Wordpress
Adding horizontal lines (HR) posts in Wordpress

In Wordpress blogs are not permitted under the horizontal lines (horizontal rule) that have been very helpful in the HTML of a lifetime to organize and structure a page. What inhibits these lines we have in the CSS wordpress. Here we find the following code:


HR (
display: none;
)

This simply means that when writing a line, either by editing HTML or by Tiny or some other WYSIWYG editor, does not appear.

To fix this, if you want to put any lines to separate concepts or whatever, you can simply delete this piece of code, or write the best line in another way:

<hr /> style="display:block;"
with what that line in particular it will be represented.





Creative Commons License This blog is best viewed in Firefox
Privacy Policy
Broadly speaking ...