• I am trying to make the header background image flush with the left side and having no luck. Here are the two css files, if anyone could help I would appreciate it!!

    [Code moderated as per the Forum Rules]

Viewing 9 replies - 1 through 9 (of 9 total)
  • Yeah, post a book of CSS code and expect us all to read it. ??

    First up, you’ve seen that “code” button telling you that you can format your code… so use it the next time… please!

    And 2nd, this kind of question would belong here: https://www.ads-software.com/support/forum/5 since it’s clearly a design question related to xhtml/css and not really a “How-To and Troubleshooting” thingy.

    a more productive note:
    could you please post a link to your site?
    there is no need to post any css files here.
    if you really need to discuss large bits of code, please use a pastebin.
    css alignment issues are imho best checked live in firefox, with the developer addon or firebug.
    for instance, looking at the first lines of your style.css, i couldn’t even see any reference to a header background.
    this would normally take mere seconds with firefox.

    alchymyth… the “header” you can’t find is located somewhere in the middle of that css jungle. (Firefox find-function to the rescue, LOL)

    Still I think this question/problem/whatever rather belongs in the “Themes and Templates” section of this forum. But I agree on the pastebin tip. ??

    @e-sushi
    thanks for the hint; more than two screens full of scrolling, and i am lost ??
    personally, i don’t feel too strong about the forum section, as i see from the past that most questions get posted in the ‘how to and troubleshoot’ section, because that is obviously the first concern of most ‘customers’.
    they only post in ‘themes ..’ if they are building their own theme or strongly believe that it is a theme related issue.

    @alchymyth
    Yeah, dived into the forum deep last 12 hours to see what I can contribute and all I do is finding myself reading re-posts of the same questions. Ask me about fruitsalad in my brain. That’s when I remembered that search-thingy! LOL Funny thing is, I also had a question on this forum that no-one has been able (or wanting) to answer yet. So, if you’re bored or just feeling social like I did last night, maybe you can help me with https://www.ads-software.com/support/topic/362602 ? ??

    Thread Starter srummery

    (@srummery)

    When I asked the question, I was not trying to irritate anyone or annoy. Why you would even try to read the post and make any kind of comment when you obviously are so much above it all is beyond me.

    @srummery

    Just under your post, alchymyth offered suggestions which I’ll paraphrase:
    1. Post a link to your site, it is needed for us to be able to see things in context to help you
    2. You don’t need to post your css, we can get it with a link to your site
    3. if you feel you need to paste code to get help use the pastebin (linked above)
    4. Get the firebug addon for firefox, it will help you determine which bit in your css to adjust

    looking at your css…..

    #all {
    	width: 935px;
    	margin: auto auto;
    	text-align: left;
    }

    is a wrapper that wraps up your entire page. It’s 935px, with auto marging, which keeps it centered. So your hed and logo divs are inside of that wrapper, so even tho your logo is float:left, it can only float as far as that ‘all’ wrapper allows.

    To allow the logo to go all the way to the left, it’s gotta come outside that wrapper…..or I guess you could position it absolutely to the left side….. maybe someone else knows a simpler way

    Thread Starter srummery

    (@srummery)

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Move header background flush on left side’ is closed to new replies.