admin管理员组

文章数量:1122846

I am trying to move my logo from the center of my page to the left side.

I am using the "Pixgraphy" theme by "freesia" and it doesn't allow me to move it in the template

whenever I try to paste custom CSS code in, it wont do anything and I'm a little afraid editing directly in the .php file due to previous syntax errors

Hope someone out there can help me

( ps: I am not very skilled in either CSS/HTML so I would appreciate some very simple/basic instructions )

Thanks in advance

Best regards

Alfred

I am trying to move my logo from the center of my page to the left side.

I am using the "Pixgraphy" theme by "freesia" and it doesn't allow me to move it in the template

whenever I try to paste custom CSS code in, it wont do anything and I'm a little afraid editing directly in the .php file due to previous syntax errors

Hope someone out there can help me

( ps: I am not very skilled in either CSS/HTML so I would appreciate some very simple/basic instructions )

Thanks in advance

Best regards

Alfred

Share Improve this question asked Jul 25, 2018 at 12:44 AlfredAlfred 11 bronze badge 1
  • WPSE is good for questions that are specific to WordPress development issues. Generic HTML/CSS/JavaScript questions are better suitable for StackOverflow. Please read the topics here to know how to ask a good question in WPSE. – Fayaz Commented Jul 25, 2018 at 13:23
Add a comment  | 

1 Answer 1

Reset to default 0

use container-fluid class instead of container in header.php file of Pixgraphy theme.

Remove text-align: center and margin: 0 auto from the ID site-branding in your style.css. You can also overwrite it using custom stylesheet editor.

Also, add below style to resolve your issue.

#site-branding {
  float: left;
}

Thanks

本文标签: cssHow do I move my logo from the center to left (Pixgraphy theme)