• Hi! How can I edit my WordPress TwentyTen Blog page?

    https://bit.ly/ad9tgW

    1. I want to put a sentence at the top (not a sticky).
    2. How can I increase the margins / edit the side bar?
    3. How can I shift the sidebar up so that it is at the top of its column?’

    Thanks!

    I tried editing post.php, but I guess that only refers to an individual post page, not the blog page.

Viewing 15 replies - 16 through 30 (of 41 total)
  • Thread Starter Jam

    (@pimaniii)

    Ok, so I made it

    #container{
      width:700px;
      margin:0 auto;}

    But all of my pages are shifted.

    change this code to make other pages bigger

    .one-column #content {
    margin:0 auto;
    width:640px;
    }

    You need to recheck if you using one column no sidebar template for other pages.

    Thread Starter Jam

    (@pimaniii)

    All my pages are one column no sidebar except the blog page (this and that).

    I changed that value but that didnt help. It make the content space larger, but not shifted as it was before. (Let me know so I can change it back)

    Thread Starter Jam

    (@pimaniii)

    Ok, I will change it back now.

    That DID put the sidebar where I wanted it, but the rest of the website is shifted.

    I changed `.one-column #content {
    margin:0 auto;
    width:640px;
    }`

    But that only expaned the width, not shift it to the center of the page like before.

    How can I shift the content to the right (all but the blog page)?

    Hi. Can I remove Proudly powered by WordPress, Install WordPress, and web hosting found in the footer of Twenty Ten Theme?

    Thanks

    @pimaniii have you tried using full width no sidebar template for the pages and see if that solves your problem.

    Thread Starter Jam

    (@pimaniii)

    What do you mean by

    full width no sidebar template

    ?

    Thanks

    @pimaniii Twenty ten has a template full width no side bars and if I remember right your theme is based with twenty ten theme as I have on mine .

    Thread Starter Jam

    (@pimaniii)

    Do you mean the default template?

    In each of my pages, I only have 2 options.
    1. Default template
    2. One column no sidebar

    And all of my pages are One column no sidebar, EXEPT the blog page, which is default template

    I am sorry I thought there was one in twenty ten theme I have on mine I think I made one I pasted it in pastebin get it from here

    https://www.wordpress.pastebin.com/uASZGDrb
    add it to theme as file
    fullwidth-page.php

    And add this in your style.css

    LAYOUT: Full Width, no sidebar :D
    ----------------------------------------*/
    .full-width .post, .full-width .type-page{
    	width: 940px;
    	overflow: hidden;
    }
    Thread Starter Jam

    (@pimaniii)

    Alright, done!

    Now I made all my pages under that template (except for the blog page)

    I changed the `#container{
    width:700px;
    margin:0 auto;}`

    But the pages are still shifted.

    What should I do?

    did you put the code above in style.css as I do not see it.

    Thread Starter Jam

    (@pimaniii)

    I did. It is right under the header code.

    /* This is the custom header image */
    #branding img {
    	border-top: 0px solid #000;
    	border-bottom: 0px solid #000;
    	clear: both;
    	display: block;
    
    }
    
    LAYOUT: Full Width, no sidebar :D
    ----------------------------------------*/
    .full-width .post, .full-width .type-page{
    	width: 940px;
    	overflow: hidden;
    }

    Thread Starter Jam

    (@pimaniii)

    But it is still shifted.

    The template still using same container as blog page and if widen the container it shifts the side bar so lets make a another container and use it on that template add this to style.css

    #container-wide {
    margin:0 auto;
    width:900px;
    }

    #container-wide {
    float:center;
    margin:0 -240px 0 0;
    width:100%;
    }

    and change this line in fullwidth-page.php

    <div id=”container-wide” class=”full-width”>

Viewing 15 replies - 16 through 30 (of 41 total)
  • The topic ‘Edit TwentyTen Blog Page’ is closed to new replies.