Forums

[resolved] [NSFW] Posts that align right (6 posts)

  1. Tyrant2012
    Member
    Posted 6 months ago #

    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?

  2. alchymyth
    The Sweeper
    Posted 6 months ago #

    please post a link to your site.

  3. Tyrant2012
    Member
    Posted 6 months ago #

    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.

  4. alchymyth
    The Sweeper
    Posted 6 months ago #

    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)

  5. Tyrant2012
    Member
    Posted 6 months ago #

    YAY!!! It worked thank you oh so very much :)

  6. Tyrant2012
    Member
    Posted 6 months ago #

    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?

Reply

You must log in to post.

About this Topic

Tags