• Although I’ve read through what I could find on similar topics, I can’t seem to find the solution to this issue…

    I’m trying to align my page to the left, and it worked on the header, but not the content (static page that shows up on the front page). I’ve seen some people using this template with this done, so I’m sure it’s possible, but I can’t figure out how…

    This is what my page looks like now.

    I’d like to know how to align everything on the page all the way down to the copyright, left, center, and right, so I can compare the different alignments.

    Thank you in advance for your help!

Viewing 14 replies - 1 through 14 (of 14 total)
  • Thread Starter thedoghouse.jp

    (@thedoghousejp)

    Now that I look at my wp site, I think what I want is to align the logo and menu to the content below. It appears the content below (static page) is in a box (div?) or something and centered. Likewise, I’d like my logo and menu to remain aligned to the left but would like the left edges to be aligned with the content below. I hope that makes sense… Thanks!

    Thread Starter thedoghouse.jp

    (@thedoghousejp)

    Any takers on this? I would really appreciate it! Basically, this is what I’m trying to do. I’d like the logo moved a little to the right, but not centered. Thanks again!

    Hi @thedoghouse.jp,

    Thanks for posting on the forum.

    I’d like the logo moved a little to the right, but not centered. Thanks again!

    You can move your logo to the right by adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin.

    https://www.ads-software.com/plugins/simple-custom-css

    div#logo_and_title {
       margin-left: 50px;
    }

    You can change the value of right margin in the above code to adjust its position.

    Best Regards,
    Vinod Dalvi

    Thread Starter thedoghouse.jp

    (@thedoghousejp)

    Thank you so much Vinod!

    How about shifting the menu bar?

    Thanks again!

    Thread Starter thedoghouse.jp

    (@thedoghousejp)

    And one more… How do I make the logo responsive so it slides to the left like the content when I make the browser smaller? Thank you!

    Thread Starter thedoghouse.jp

    (@thedoghousejp)

    OK, I got the menu shifted and the menu’s fine, but when I pull up the website on my iPhone the logo is off to the right. How do I correct this so that it’s aligned with everything else? Thanks!

    Hi @thedoghouse.jp,

    Thank you for your reply.

    when I pull up the website on my iPhone the logo is off to the right. How do I correct this so that it’s aligned with everything else?

    Try using the following CSS code.

    @media (max-width: 643px){
    	div#logo_and_title {
    		margin-left: 0;
    	}
    }

    Regards,
    Vinod Dalvi

    Thread Starter thedoghouse.jp

    (@thedoghousejp)

    Thanks Vinod, that did the trick!

    You are most welcome, if I can be of any further assistance please don’t hesitate to ask ??

    Thread Starter thedoghouse.jp

    (@thedoghousejp)

    Hi Vinod,

    I hope you’re still around to help me! When I click on the menu on my iPhone, it messes up the layout… How can I fix this?

    Thanks for all your help!

    Thread Starter thedoghouse.jp

    (@thedoghousejp)

    Would anyone be able to help me with this?

    Thread Starter thedoghouse.jp

    (@thedoghousejp)

    I would also like to add my business hours on the right side of the logo and facebook button on the right of that. Any help would be appreciated!

    Thread Starter thedoghouse.jp

    (@thedoghousejp)

    OK, I just figured out the menu issue… but I’d still like to know how to put stuff next to the logo. Thanks!

    To put stuff next to the logo, you will have to add it in the header.php file of your child theme in the appropriate place where you want to display it.

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘Twenty Thirteen: Align Page’ is closed to new replies.