Viewing 4 replies - 1 through 4 (of 4 total)
  • Scott

    (@scottsweb)

    Hi Mike
    The site uses inline CSS which means the CSS is actually written inline with the HTML. You will see this in your browser when inspecting or viewing the HTML of the page:

    <a href="http://www.mtvalleygolf.com/" class="mtv-logo mtv-logo-850684670" style="left: 199.8px; top: 156px; margin-left: 0px !important;">
        <img src="http://blogs.acainc.net/demo/wp-content/themes/MtValleyFinal3/images/logo-850684670.png" alt="">
    </a>

    The section of interest to you is:

    style="left: 199.8px; top: 156px; margin-left: 0px !important;"

    You will most likely find the offending HTML/CSS in your header.php file within the theme.

    Inline CSS will overwrite any CSS added to your styles.css which is why it is not making a difference. For this reason (and a few others) Inline CSS is considered to be bad practice.

    Thread Starter Mike Cunningham

    (@mike-cunningham)

    I can’t find that code in the header.php, or in any other .php file.

    I see in sidebar-header.php something:

    <a href="http://www.mtvalleygolf.com/" class="mtv-logo mtv-logo-850684670">
         <img src="<?php bloginfo('template_url'); ?>/images/logo-850684670.png" alt="" />
    </a>

    I tried to add the ‘style’ section above, and change the “left”, bu that did nothing.

    I’m stuck again. Thanks for your help.

    any adaptation does not make much sense, as long as the logo is positioned absolute in reference to the header container which spans the full browser width.

    try to zoom out or change the browser window to see how the logo changes location.

    as this is a pure formatting issue within an artisteer generated theme, asking at an artisteer forum might be an option; http://www.artisteer.com/?forum_id=13&p=forum_topics

    Thread Starter Mike Cunningham

    (@mike-cunningham)

    Right the logo doesn’t move at all when I zoom in or out.

    I made a post in the artisteer forum, and someone there said try to add this to my style.css: .mtv-logo.mtv-logo-850684670 {Left: 200px!important;}, but it still didn’t move.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Can't get logo to move over a little’ is closed to new replies.