Sergio Urra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to add blank lines in a post/pageSelect the image and click the alignment button (left, right or center)
You can edit the margins of the image in the style.css file.
Forum: Fixing WordPress
In reply to: How to add blank lines in a post/pagein the css to 2.8em will that achieve what I want and make bigger lines between paragraphs?
Yest, but the result will be proportional to the separation of the lines, so it’s not a good solution.
Forum: Fixing WordPress
In reply to: How to add blank lines in a post/pageWell, to have two blank lines I use this:
< code >< br >< /code >
It works for me.
After the edit it looks OK in the visual mode. When I come back to the HTML editor it loks like:
One line here….
< code >
< /code >
Other line here….I supose that you can write directly the code tags in two lines.
Forum: Fixing WordPress
In reply to: How to add blank lines in a post/pagehave you tried
I’m using it, and it works. I use also a return to make separated paragraphs in the visual mode.Forum: Fixing WordPress
In reply to: No comments – How can I change it?You wellcome Stick
Forum: Fixing WordPress
In reply to: No comments – How can I change it?Well, I have done the changes in the index.php and archive.php of the theme, between the tags:
<p class="postmetadata">...</p>
There is the “No comments”. Just leave the string empty.
Forum: Fixing WordPress
In reply to: showing subcategories in sidebarIt’s a good idea to use maxref.
Plugin Name: Maxref Widgets
Plugin URI: https://webfadds.com
Author: WebFaddsHope it helps
Forum: Fixing WordPress
In reply to: Text should wrap around image – but doesn’tYou can control how it’s wraped in the style.css file, like this:
img.alignleft {
padding: 0;
margin: 18px 0 -10px 0;
display: inline;
}As you can see, I’ve changed the bottom margin to -10, because I want a wrap gived by the line separation of the text style.
Forum: Fixing WordPress
In reply to: if no tags, don’t show thisthat’s the code to show the plugin IF bloggarse_tags is TRUE.
So, you need first take a look if there are tags.
You can do:
if (function_exists('bloggarse_tags') && tagFoundedTrue){
or a child IF:
if (function_exists('bloggarse_tags'){
if (tagFoundedTrue){
In order to:
{echo "Other blogs about:" . bloggarse_tags() .""; }
Forum: Fixing WordPress
In reply to: Where may I change the ASC & DESC?Thanks Otto,
I’ll test it.
Have a good day.
[EDIT]
Well, I’ve founded a line where to make the change:
line 1234: $q[‘order’] = ‘ASC’;
It worked.
Thanks again for your help Otto.
Forum: Fixing WordPress
In reply to: First post displayed right – Second one is 100% wideThanks iridiax,
The code is valid. So, I decided to test it with
Kubrik. It works prefectly.Have a nice day.
Forum: Fixing WordPress
In reply to: why doesn’t image align 2.5.1 wrap text?https://weblogtoolscollection.com/archives/2004/04/12/image-alignment-drop-shadows/
Fine, it works, but now I don’t see the result in the editor.
It’s not a big problem, but I’d like to know where I can apply the style to it.