tags:

views:

58

answers:

2

I have a template that I am modifying the text and pictures. It's all based on a 960grid, and the text is styled in external css sheets. When I copy one of the pieces of text (placed on the right of the site), and paste... it kicks the text to the left sidebar. What am I doing wrong? When I check the pasted text, it contains the same class, as the one that I copied from.

Thanks in advance.. I'm new to this and its giving me such a hard time!

A: 

Most likely it is contained in something like a 'right sidebar' that actually places it on the right side of the page. Try making the division directly below where the division you copy ends.

<div class="right-sidebar">
    <div class="something">
    </div>
</div>

Into

<div class="right-sidebar">
    <div class="something">
    </div>
    <div class="something">
    </div>
</div>
Chacha102
thanks, but i checked the class, and because i paste it, it has the same code as the text position that im trying to achieve.. here is what the code looks like:<div class="grid_4"> <h2 class="sifr-subtitle"> 2D Rendering </h2> <p>Miami-Dade Parking Garage - PGAL</p><p> <a class="button_visit" href="#home">Visit Site</a> <a class="button_next" href="#renderings">Next Item</a> </p>is there an email that i can send my files to? i really need the help.... thanks
Do you have a website you could link to? If so, link to it in a comment.
Chacha102
ok, hold and ill send u a link.... thanks a lot!
im having a tough time posting these to my site... cause its underconstruction..... can i have your email?
ok... here is the link to the files:http://www.onlinefilefolder.comusername: [email protected]: sharethanks!
You need to put it above the End Web Comment.
Chacha102
sorry....dont understand.
There is a comment that contains <!--- End Web Content -->.You need to put your div above that.
Chacha102
sorry.. im a little confused here... are you talking about the files i posted?
WELL.. i just wanted to thank you for trying to help me... i figured itout.... well sort of. somehow, the text was not behaving properly when i used the same class from the original text that i wanted to imitate... so, i created a new class and changed the css properties of it.. so it has a padding , letting the text be placed on the right side of the site... thank u so much again.
No problem. If you want to hit the Checkbox next to my answer, it would be appreciated. But not sure if you want to because I didn't actually give the answer. Glad to help.
Chacha102
A: 

hmm.. i cannot post my code,cause im new and it wont let me post more than one hiperlink... where could i post my files? thanks a bunch

You edit your question and paste the code. Just append 4 spaces before each line of code and it will be formatted automagically.
Serhii