I have a Blogger blog and I wrote a blog entry in the Visual editor. The result looks very cheap: http://ceeprojects.blogspot.hu/2013/10/cee-central-and-eastern-europe.html
I checked the source code of the blog and see that blogger did not inserted a new paragraph after I pressed enters, so the post's source is a mess. In wordpress there are a new paragraph after every enter and a nice space after its last sentence. I tried to add a margin-bottom value to each paragraph, but since my entry doesn't contain them, it was no result.
How can I format my blog now?
Here's the image: http://imageshack.us/photo/my-images/706/hjv1.jpg/
Log in to blogger.
Select your Blog,Then go to Posts.
Click on edit for the post you want to edit.
Then click on "HTLMl" next to "compose" at the top left.
You can edit the html of the post here.
Related
i have a WordPress website having 300+ post, and a link with anchor text "click here" in the bottom of the post.
i want to copy only the raw link (click here) and paste in top of the content.
any way to achieve it without manually updating each post
In my sites I use static page as a front page, and I did some other static pages to show some special static content (and embedded object) but this page sin particular I want to have the comment area shows.
My question is: how to enable comments -preferred hard code- in particular pages? at least having the same category?
I am using wordpress 4.1 and Avada Theme.
Well you can disable the comments on over all website by going to settings discussion and then uncheck the box that says, allow people to comment on new articles. This will remove all the comments on new pages and posts (starting from now). Now when you create a new page/post click on the button on the top that says "screen options". Check the box that says "discussion". Now you will have a new field in your post from where you can enable/disable the posts individually.
If you want to do it through the code, one way would be to create separate files for each page e.g page-contact.php, So when someone goes to the contact page, this file will be served, it can be a clone of page.php and just needs the comment part removed. Another way would be to goto page.php and wrap the comments code with a condition like
if(is_page('contact') || is_page('about')){
// code to show comments. Comments will be shown on contact and about page
}
I have a YouTube embed that ends in ?rel=0. I would like to change this to ?rel=0&vq=hd720. When I edit the post in WordPress under the Text editor, the query string becomes ?rel=0&vq=hd720 which breaks the functionality.
How can I get WordPress to stop changing my link on this particular embed code in this post?
Edit: I can stay in Text-mode and delete the amp; from my embed code and click Update. But then when I view source, WP has changed it to &, which again breaks the functionality.
Change to the 'Text' tab on the post editor, edit your embed code url and save the post.
The button should be on the top right corner of the editor.
I've created my first wp-theme and right now my first page is dynamic and only shows posts. I want to change that so that I can show a static text first and below I want to be able to show one post from my blog. I Have the perfect example, go to www.mediaanalys.se they have a static text and below they have blogposts. How can I do that?
I think it is not a static text. I would suggest it's as description of custom-taxonomy/category.
If you click on Sökmotoroptimering (or any other taxonomy in those four-boxes) you will see that text again.
About the slider. It think it's a plugin wich might have own settings-panel in the dashboard. (Just google for "free wordpress slider")
P.S. If you want to code something like that by yourself, look into wp codex
https://codex.wordpress.org/Function_Reference/category_description
You can try to get all categories first and then iterate through and dispaly category-name & its description...
The summary page of blog posts (Blog Front Page) is not showing the right formatting of copy as per the full blog post.
For example, look at "Article in the Vancouver Sun..." in second article here: http://socialinnovationbc.ca/news/
and then see it in the full post here: http://socialinnovationbc.ca/2011/11/collaboration-innovation-key-to-social-ills/
It has removed the link, plus the formatting.
Any ideas how to stop it doing that?
Never seen this issue in Wordpress before.
Thanks
WordPress by default strips html and short-codes while the excerpt is shown. One work around is to add the html in the excerpt text area field for the post. Any html added to the excerpt metabox would not be filtered.