culturalelite
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Editing upload plugin, to add a class to an image automaticallyI tried that, but it shifts all the images (including the little icons in the post meta) over to the left…
I just want to left align the uploaded image, I guess that means defining a seperate new class for the meta images in the CSS?
Forum: Themes and Templates
In reply to: Editing upload plugin, to add a class to an image automaticallyyeah its just that I don’t want all the images on the page to float:left, just the images in the post.
I tried doing ‘float:left’ in the css, but it made all my meta icons move position….
Forum: Themes and Templates
In reply to: shifting images, that are controlled in the style sheetyou’re right, but I didn’t explain myself properly. sorry :).
i’m using the ‘post upload and paste’ upload plugin, and also the ‘WYSIWYG wordpress’, i’ve been using the upload the image and inserting it into the post as i’m writing it (using the little pop-over menu)and then of course I have to go into the HTML-view and add class=”alignleft” like you said ?? ….. is there anyway you think that I can make the class apply to the image automatically?
Forum: Themes and Templates
In reply to: shifting images, that are controlled in the style sheetyeah it is defined, but when I apply it globally as I did in this piece of code..
/* Begin Images */
p img {
padding: 0;
margin: 0;
max-width: 100%;
float:left;
}it shifts all the images to the left, but I have a couple of images in the meta at the bottom for ’email this item’ and ‘comments’ that I want to stay center aligned….
all I want to do is apply the class=”alignleft” to the image I’ve posted with the article…
Forum: Themes and Templates
In reply to: shifting images, that are controlled in the style sheethmmm… ok I see what I did wrong now….
I’d put float:left… here…
/* Begin Images */
p img {
padding: 0;
margin: 0;
max-width: 100%;
float:left;
}so obviously I removed that, But does anyone know where I put <div class=”alignleft”/> to get the posted image to sit where it did before(aligned left with text-wrap)
Forum: Themes and Templates
In reply to: wrapping text, i’m sure this is simple and i’m being stupid…yeah you’re right aswell…. the answer was in the codex, my mistake.
noob-mistake. apologies.
CE
Forum: Themes and Templates
In reply to: wrapping text, i’m sure this is simple and i’m being stupid…ahhh thanks so much, I knew it was something simple. thanks again
CE