I have a site that whenever I make a new post it aligns all the way to the right instead of to the left or center like the rest of the page. Anyone know how to fix this?
I have a site that whenever I make a new post it aligns all the way to the right instead of to the left or center like the rest of the page. Anyone know how to fix this?
please post a link to your site.
http://spit-spunk.com/?p=124
[NSFW]
Please be advised it is for a Adult tube site. Just a heads up. But all my test posts go all the way to the right and get cut off.
i assume the theme is not designed to show wide videos in the text section on the right, which is restricted to a width of 250px;
the single post template (single.php) seems to have a video section on the left:
.videosection{
width:650px;
float:left;
margin-left:34px;
display:inline;background:pink;
}
(which you seem to have removed in the template; in which case you could also remove the above css style)
and a text section on the right:
.textsection{
width:250px;
float:right;
padding:0 35px;
}
into which your post content is added.
try to edit this text section css in style.css, and for instance change to:
.textsection{
width:940px;
float:left;
padding:0 35px;
}
(not tested for side effects in other parts of the site)
YAY!!! It worked thank you oh so very much :)
but one last question you said there is a video section which I seemed to have removed? I didnt remove anything like that how could that impact my site? Is it something I need to add back in and if so how and where?
You must log in to post.