The theme’s style sheet uses the reset method to set all margins on the <p>
tag (and many others) to 0 (this is common practice). So you would need to add a style declaration into your style sheet to add the top and bottom margin back in for the <p>
tag.
For example: you could add this to your style sheet after the reset.
p {
margin: 10px 0;
}
This will add a top and bottom margin of 10px. You can change this to whatever value you like.
You could also set the margins individually.
p {
margin-top: 10px;
margin-right: 0;
margin-bottom: 10px;
margin-left: 0;
}
.added p {
margin: 0;
}
Edit:
Included extra css to fix “Added by”
Related Posts:
- Get current menu_order
- Get content from one page and show it on another page
- get_children() Not Working with orderby Parameter
- Post/Page Publish/Update button not clickable once I make an edit
- Custom Field in Featured image for A particular post
- Remove hidden formatting when user paste text from MS Word into TinyMCE
- Create custom page in WooCommerce
- Is there a WordPress equivalent to MediaWiki templates
- Getting an alphabetic post list with two letters onclick on letter
- Pagination not working on Custom Page Template
- Is it possible to show a different WP menu when using password protected pages?
- Multiple loops in same page, without duplicate content
- Include related posts on a page
- why does HTML Tag not working in Post and Page
- problem to delete page
- Hide add new page button
- Redirect before post page
- $post object is null
- Is there any WordPress alternative to Book module of Drupal?
- Convert a complex webpage into WP theme
- How To Keep Posts from Being Displayed Two or More Times on My Homepage? [closed]
- Single post as homepage?
- Should a photo gallery be in a post or on a page?
- How can I pass the ID of a post to a page template by clicking a url?
- Multiple loops are not reset
- Why aren’t my posts/pages showing up in my WordPress Theme?
- Adding buttons to Add New Post and Add New Page
- 301 (static page instead latest posts)
- Static posts page with home.php
- Start post pagination at 0 instead of 1
- Posts vs Pages and categories
- How to dynamically parse and transform post/page content before displaying it?
- is_page Funtion for Posts ?
- Why won’t pagination work?
- WordPress Query Posts From Category Post on Static Page
- How to add some html formated text to every new post in WordPress
- Intercept page request and add value to it
- How to create a page that shows the last 10 posts?
- $_GET parametters not working in an specific template
- get_children returns older images
- Posts and Pages: 404 Page not found
- the_content() Not Grabbing All Content
- Detecting current page from class method
- Unabled to Change Permalinks – Even Using the “Edit” (Resets to Original Permalink on “Update”)
- I don’t want the complete article to show on homepage
- Change Author Name to Sitename on Frontend
- Display on page every post in blog WITH comments
- Showing recent post of category in page
- HTML Inside of Shortcode Breaks Shortcode Output
- posts going to 2 pages/categories only show up in 1
- Have posts included on a page that share same category
- Preview page/post revisions without overwriting current content
- Link from Post to Another Post Via Clicking on Words within Original Post
- Link to older links
- Organization of time insensitive content
- Archieve page, Advertisement Every 3 Posts
- Prevent duplicate pages from being added
- What would causes search to return incorrect results?
- Cannot publish posts, but can create new pages
- Separate blog and reviews categories
- How Do I Redirect WordPress Pages but not posts?
- Edit post & page option does not display on latest wordpress
- Is there a way to find all posts with Youtube video embedded?
- How can I change the date format of the revision list?
- Change the size of the featured image for post?
- How to show only homepage in google results instead of privacy, contact pages
- Go back to the exact post page number
- Google indexing duplicate page content with Page #### in post title and /page-2 in permalink instead of the ones I set
- WordPress empty page! what is wrong with this code?
- Add CSS and JS files of the template post on a WordPress page
- Can’t find webpage on All Pages or All Post menus
- Remove status ‘archived’ from the default post and page view
- Show post count in custom taxonomy page
- Parent menu item does not display posts when I add the sub-items
- How to distinguish pages created by woocommerce?
- How to show WP admin edit page within template page/post?
- how to put post customized in page
- Show code only on WooCommerce Pages
- Count posts for pagination
- Custom permalink for wordpress page / post
- Multiple Pages – Seperate blogs
- How to add post under particular pages? Like website.com/page1/post1
- I lost the link to my posts in my menu bar
- Posts are not showing up on next page.
- How to give priority to page than to posts permalink structure?
- Display only current page -> posts tags in page
- Call posts of particular category in a page
- Add wp-link-pages to post
- How to arrange different post categories in template
- How to mix pages and sub-categories in a url
- Make a custom URL and link to custom Template
- How to Post to Specific Pages?
- associate posts to a page
- Woocommerce – custom post type of checkout page
- Posts and pages not getting published
- How to have more post in a page than in your home page
- Custom post page has attributes of latest post [closed]
- CSS – Change height of Storefront / WooCommerce product categories, but not products
- Cannot Create a new Post [closed]
- How can I use wp_after_insert_post with $current_screen?