fabrian
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to allow only registered users?Forum: Fixing WordPress
In reply to: How to allow only registered users?I’m looking for just this…I know this is an old thread, but what was the solution?
Forum: Fixing WordPress
In reply to: Show AuthorThank you!
Forum: Your WordPress
In reply to: Help – how to add padding between image and text in a postPizdin: I know, I just messed with it and that’s how it turned out.
Vkaryl: Disabling the rich text editor worked. My class entry now works!
Thank you guys so much!
Forum: Your WordPress
In reply to: Help – how to add padding between image and text in a postI was just going to post that I was able to get it to work by using
style="margin: 0px 12px 0px 30px;"
Still though, Using something like:
<img src="testimg.gif" class="left" />
doesn’t do a damn thing in the post editor (refering to the class). The class is there in the stylesheet, I wish I could just insert it. Any idea why it’s not working?Forum: Your WordPress
In reply to: Help – how to add padding between image and text in a postI have one more question. I’m only using the post editor. My code is right, but the text still doesn’t work right with the image. Even with my img.left class the text is still slammed up against the image. Could this be because of using the post editor or is there another way to edit the html?
Thanks you
Forum: Your WordPress
In reply to: Help – how to add padding between image and text in a postThanks for the information and links. I’ve been reading as much as I can since I put my site up a few weeks ago. My specialty is hardware, I haven’t even thought about code in years.
I think my main problems were with placement of tags and understanding how they should be laid out and relationships between them.
Piz_din’s link example above is really what I was looking for. Basically a what goes where type of thing.
Again, thanks for helping someone who really shouldn’t be asking these basic questions in the first place, appreciated.
Forum: Your WordPress
In reply to: Help – how to add padding between image and text in a postIn the blix theme there’s this..
/* images
————————————————–*/
img.left {
float:left;
margin:0 12px 0 0;
}img.right {
float:right;
margin:0 0 0 12px;
}img.center {
display: block;
margin:0 auto;
}/* container
————————————————–*/If I add class=”img.left” in the path for an inserted image through the post editor, it doesn’t work the way it should. I’m not really sure why, I’m a begginer as far as css goes, I’m sure I’m doing something wrong. Is there somewhere else I’m supposed to be editing this stuff?
Sorry for the noob post, I’m trying to learn..
Forum: Your WordPress
In reply to: Help – how to add padding between image and text in a postI did look, I guess not good enough. Thanks you!