digital style

Support for PhpBB3. Post here to get help with any phpBB3 related issue here
There is no support here! Only Read Access!
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
Else your topic may be ignored or locked!
Locked
dragoth
BBCoder III
BBCoder III
Posts: 81
Joined: 05 Mar 2010, 02:57

digital style

Post 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
User avatar
Steve
BBCoder VI
BBCoder VI
Posts: 803
Joined: 05 Mar 2010, 01:10
Extra Rank: Donator.png
BBCodes: 2000
Favourite BBCode: porn tube
Favourite MOD: Non of Stokers
Location: up your bum
Contact:

Re: digital style

Post 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.
NAPWR wrote: Nice, Stoker is Hot
cisco007
BBCoder VI
BBCoder VI
Posts: 1015
Joined: 16 Mar 2010, 18:14
Location: Don't really know!

Re: digital style

Post 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!
dragoth
BBCoder III
BBCoder III
Posts: 81
Joined: 05 Mar 2010, 02:57

Re: digital style

Post by dragoth »

well thats dosnt work at all it lays over the other one
User avatar
Steve
BBCoder VI
BBCoder VI
Posts: 803
Joined: 05 Mar 2010, 01:10
Extra Rank: Donator.png
BBCodes: 2000
Favourite BBCode: porn tube
Favourite MOD: Non of Stokers
Location: up your bum
Contact:

Re: digital style

Post 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.
NAPWR wrote: Nice, Stoker is Hot
dragoth
BBCoder III
BBCoder III
Posts: 81
Joined: 05 Mar 2010, 02:57

Re: digital style

Post by dragoth »

man i tweaked and tweaked it and its just not coming out right
Last edited by dragoth on 02 May 2010, 21:29, edited 1 time in total.
dragoth
BBCoder III
BBCoder III
Posts: 81
Joined: 05 Mar 2010, 02:57

Re: digital style

Post by dragoth »

[edit]Comment removed![/edit]
Last edited by Steve on 02 May 2010, 21:54, edited 1 time in total.
Reason: Edited by support team.
Locked