Viewing 9 replies - 16 through 24 (of 24 total)
  • ^ there’s a thread in here somewhere covering that specifically.

    I found the thread.

    #access {display:table;height:80px;horizontal-align:right;width:200px;float:right;}
    #access #menu {horizontal-align:right;display:table-cell;font-size:0.7em;}
    #access #menu ul {horizontal-align:right;display:block}
    #access #menu ul li ul {margin-left:10px;}
    #access #menu a{font-weight:800;}
    #menu {float:right}
    #menu li {display:inline;margin:0 15px 0 0}

    It appears to work ACCEPT that it is trying to line them up on the right side of my logo rather than under. See https://www.reflections-etc.com/blog

    Any ideas? Thanks Pamela

    float left instead of right. You might also have to clear before you do that and then maybe bump the padding to move it down.

    Yes that worked. Thanks.

    one problem. I put the facebook image as a list item and it worked fine when the list was vertical. But now it doesn’t want to be part of my horizontal list. see https://www.reflections-etc.com/blog

    my code is:

    </div>’;
    }

    Any more ideas? Thanks

    Wait. For some reason my code didn’t copy correctly above. I think it’s because the list code are allowed here. I’ll try again….
    /*

    </div>’;
    }*/

    Hmmm….still not copying correctly. ????

    use the ‘code’ button here above the editor window, press once before pasting code, and again after.

    Thanks alchymyth

    function sandbox_globalnav() {
        echo '<div id="menu">
    
    <ul>
    <li class="page_item"><a href="https://www.reflections-etc.com">Home</a></li>
    <li class="page_item"><a href="'. get_settings('home') .'/" title="'. get_bloginfo('name') .'" rel="home">Blog</a></li>
    <li class="page_item"><a href="https://www.reflectionsetc.zenfolio.com" Target="_blank">Client Proofs</a></li>';
        $menu = wp_list_pages('title_li=&sort_column=menu_order&echo=0'); // Params for the page list in header.php
        echo str_replace(array("\r", "\n", "\t"), '', $menu);
        echo '
    <li class="page_item"><a href="'. get_bloginfo_rss('rss2_url') .'">RSS</a></li>
    <li class="page_item"><a HREF="mailto:[email protected]">Email Me</a></li>
    <li class="page_item"><a href="https://www.facebook.com/reflectionsetc", target="_blank"><img src="https://www.reflections-etc.com/blog/wp-content/uploads/2010/02/find_facebook_small.gif"></a></li></ul></div>';
    }
Viewing 9 replies - 16 through 24 (of 24 total)
  • The topic ‘Has anyone worked up any variations on this theme?’ is closed to new replies.