• for some reason, i am not able to get the website header on my WordPress-based blog to align tightly to the top left of the window, but i have no problem having it aligned the way i want on other pages.

    here’s the main page of my blog…

    https://flyerflies.com/blog

    and here is the main page of my forum…

    https://flyerflies.com/forum

    i have a good grasp of HTML and CSS, and cannot find anything in my header code that would prevent the tight top left alignment im looking for. it seems like a minor detail, but i want the layout of both of these pages to be uniform so the transition between areas is as seamless as possible.

    any ideas???

Viewing 5 replies - 1 through 5 (of 5 total)
  • Each one has a different SRC.

    TheFlyerFly,

    Look in the style.css for the following:

    #page {
       margin: 20px auto;
       padding: 0;
       width: 800px;
       }

    and alter the top margin to maybe 2px.

    #page {
       margin: 2px auto;
       padding: 0;
       width: 800px;
       }
    Thread Starter TheFlyerFly

    (@theflyerfly)

    no luck, doc4.

    i actually did not have margin, padding, or width attributes defined. but i tried to plug in both of the code snippets you showed and nothing changed.

    TheFlyerFly,

    You’re saying there was no margin defined within the #page style? Okay I see the issue: #page is now defined twice in your stylesheet. Delete the first instance and scroll down the page until you find the #page instance shown in the comment above.

    Thread Starter TheFlyerFly

    (@theflyerfly)

    oh for cryin out loud. thanks doc4. hard to believe i didnt see that or even think to search for it.

    all is well now!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘trouble getting banner to top left’ is closed to new replies.