View previous topic :: View next topic |
Author |
Message |
Lorrenzo Moderator
Reputation: 4
Joined: 02 Jun 2006 Posts: 3744
|
Posted: Thu Jun 30, 2011 3:52 pm Post subject: CSS help |
|
|
Welp, I've never made my own CSS, only edited what I already had.
I should learn, I know. But I'm looking for some quick help.
I need to make these images align no matter how much text is present. With my current, most basic html that I threw together in 3 minutes, the images move with the more text I have. (Just download the file and take a look).
I was wondering what the best step would be to fix this. I assume CSS?
Download:
http://www.mediafire.com/?2463indumtfb0op
_________________
LAWLrrenzolicious |
|
Back to top |
|
 |
Sui Expert Cheater
Reputation: 7
Joined: 04 Sep 2008 Posts: 119
|
Posted: Fri Dec 02, 2011 3:37 pm Post subject: |
|
|
#something{
width:somethingpx;
height:somethingpx;
float:something;
margin:0px 0px 0px auto;
background:url(somewhere) no-repeat;
Make a div and split that div into two divs.
Use float to float the image to left or right and set it to wherever you want it.
In the other div format the text style and position.
You can just paste it then how many times you want.
This is not hard to get, if you don't understand it i'd suggest that you watch some tutorials or something.
_________________
|
|
Back to top |
|
 |
|