Page 1 of 1

digital style

Posted: 02 May 2010, 19:27
by dragoth
i basically want to add a menu bar right above the one that's there the menu bar that has the log in and FAQ

http://www.phpbb.com/styles/demo/3.0/?style_id=965

before you say i i looked up the author and they haven't been on for 4 years i think that's what it says on the profile

edit:
Styles are not my thing i need to learn how to create styles and how to edit them how i want i just dont have the time

Re: digital style

Posted: 02 May 2010, 20:06
by Steve
Easy reproduce this part in the overall_header.html

Code: Select all

        <div class="navbar">
                        <!-- IF not S_IS_BOT and S_USER_LOGGED_IN -->
                        <ul class="linklist leftside">
                                <li>
                                        <a class="menulinks" href="{U_PROFILE}" title="{L_PROFILE}" accesskey="u">{L_PROFILE}</a>
                                <!-- IF S_DISPLAY_PM --> <span class="menulinks">(</span><a class="menulinks" href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO}</a><span class="menulinks">)</span><!-- ENDIF --><!-- IF S_DISPLAY_SEARCH --><span class="menulinks"> &bull; </span><a class="menulinks" href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a><!-- ENDIF -->
                                        <!-- IF U_RESTORE_PERMISSIONS --> <span color="#ffffff">&bull;</span>
                                        <a class="menulinks" href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a>
                                        <!-- ENDIF -->
                                </li>
                        </ul>
                        <!-- ENDIF -->

                        <ul class="linklist rightside">
                                <li><a class="menulinks" href="{U_FAQ}" title="{L_FAQ_EXPLAIN}">{L_FAQ}</a></li>
                                <!-- IF not S_IS_BOT -->
                                        <!-- IF S_DISPLAY_MEMBERLIST --><li><a class="menulinks" href="{U_MEMBERLIST}" title="{L_MEMBERLIST_EXPLAIN}">{L_MEMBERLIST}</a></li><!-- ENDIF -->
                                        <!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED and not (S_SHOW_COPPA or S_REGISTRATION) --><li><a class="menulinks" href="{U_REGISTER}">{L_REGISTER}</a></li><!-- ENDIF -->
                                        <li><a class="menulinks" href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="x">{L_LOGIN_LOGOUT}</a></li>
                                <!-- ENDIF -->
                        </ul>

                </div>
add before:

Code: Select all

<div class="navbar">
    <ul class="linklist leftside">
         <li><a href="#" title="hover title">left link</a></li>
    </ul>
	    <ul class="linklist rightside">
         <li><a href="#" title="hover title">right link</a></li>
    </ul>
</div>
add the correct http//:addy and hover title web site name and decide if you want them on the left or right you could center the links also.

Re: digital style

Posted: 02 May 2010, 20:12
by cisco007
dragoth ยป 02 May 2010, 19:27 wrote: edit:
Styles are not my thing i need to learn how to create styles and how to edit them how i want i just don't have the time
No one has time to do anything, it's just a matter of a few minutes at a time!

Re: digital style

Posted: 02 May 2010, 20:23
by dragoth
well thats dosnt work at all it lays over the other one

Re: digital style

Posted: 02 May 2010, 20:32
by Steve
yes your right i just installed it
this is missing out of the extra menu,

Code: Select all

<a class="menulinks" href="#" title="hover title">left link</a>
but still doesnt look right.I havenot got time to test but
look in common.css
find:

Code: Select all

.overlay {
    position: absolute;
    top: 100px;
    width:100%;
    height: 25px;
    background:#000;
and adjust the height 25px,s see if it helps.The author must be some where as its version 3.0.7 based.

Re: digital style

Posted: 02 May 2010, 20:59
by dragoth
man i tweaked and tweaked it and its just not coming out right

Re: digital style

Posted: 02 May 2010, 21:30
by dragoth
[edit]Comment removed![/edit]