• I am trying to create a section much like the header image in Twenty Ten where you can go into the admin screen and change out the image without having to get into the coding, but I am trying to move the image to the right hand side of the screen, but it is only staying in the middle of the screen. What CSS is controlling the image position? I have tried header, masthead, branding, none of those are working. Can anyone help? Here is the link where you can see what I’m trying to do: https://webdesignsbyliz.com/widelko/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Find this in your CSS

    #site-description {
    -webkit-text-size-adjust: none;
    }

    and replace it with

    #site-description {
    -webkit-text-size-adjust: none;
    display: none;
    }

    Despite not being blank, the site description still takes of space. display: none; simple hides the element.

    Thread Starter twilitegxa

    (@twilitegxa)

    How can I set the featured image to be in the same position as the main header image? I read that if you set the featured image on a page and it’s large enough, then it will replace the header image for that page, but it’s not in the same position, on the right hand side, like I want it to be: https://webdesignsbyliz.com/widelko/?page_id=2

    Can you help? By the way, your suggestion worked perfectly!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Admin Section for images?’ is closed to new replies.