JP Savage
Member
Posted 2 years ago #
HI!
I am stumped! I want to move the linked header image in http://www.wildsideassociates.com to the right of the page, but nothing I have tried has worked (Okay, so no surprises yet!)
I really thought that I had this code down, now this. I even downloaded Dreamweaver, but it isn't a lot of help, yet.
Thanks for your awesomeness!
Brian
Edit style.css and change:
#header {
padding-bottom:20px;
}
to:
#header {
padding-bottom:20px;
text-align:right;
}
JP Savage
Member
Posted 2 years ago #
esmi, THANKS!
Why is that the location for alignment definition? If I called it in the header.php, would it still work, or is only this a style function?
I have to understand word press! I feel like I'm in France with a poorly written phrase book. :-(
You ROCK!
Brian
It's the location needed for styling anything to with with your header block - which has the id "header" (#header). You could add it to header.php if you wanted to but it would have to be in a style block or use inline style syntax. Adding to an external CSS sheet is often a lot easier.