TP-Docs
HTML5 Icon HTML5 Icon HTML5 Icon
TP on Social Media

Recent

Welcome to TinyPortal. Please login or sign up.

May 22, 2024, 05:47:24 PM

Login with username, password and session length
Members
Stats
  • Total Posts: 195,197
  • Total Topics: 21,221
  • Online today: 226
  • Online ever: 3,540 (September 03, 2022, 01:38:54 AM)
Users Online
  • Users: 0
  • Guests: 157
  • Total: 157

site Menu block

Started by thefley, March 13, 2008, 07:37:29 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

thefley

Maybe someone can help me with a menu block,  how would I fix the one I have listed below. I do not want it to open up in new window (did not use the about blank) I would like it to open up in same window.  I could not find one to use with a search of the site excempt for drop down as I do not like those.
or if you know of a better script for me to use?

thx.

HomeForum ArcadeChatGalleriesCalendar Staff Lists

Spasm

Quote from: thefley on March 13, 2008, 07:37:29 PM
Maybe someone can help me with a menu block,  how would I fix the one I have listed below. I do not want it to open up in new window (did not use the about blank) I would like it to open up in same window.  I could not find one to use with a search of the site excempt for drop down as I do not like those.
or if you know of a better script for me to use?

thx.

HomeForum ArcadeChatGalleriesCalendar Staff Lists


Use the menu manager in "Edit Blocks".. You can choose from there if you want it opened in the same window.

Heero

What about just :

<a href="YOUR WEBSITE URL">NAME OF YOUR LINK (Home, Forum,..)<br /></a>

(used in a scriptblock)
If you're using _blank somehow, change it to _self .

thefley

Thx for not skinning the newbe!!!, great site/Great help.

Vivasvan

#4
i need the one like you have on your site.. how did you do it?! :o :(

here is what im trying to do.. im posting here as my originial post was locked so i hope i can be helped here.. im a total noob trying extremely hard to get TP to do what its done for so many others and so far so good..

however im not getting much luck with my help on this topic...



this is my site www.orderofmiddleearth.com/brandywine

TinyPortal v1.0.5 beta 1© Bloc
Powered by SMF 1.1.4

if we goto this site... www.bladesofanarion.net you can see they have site menu buttons such as HOME FORUM CALENDAR LOGIN REGISTER.

I want to add this to my site just above where the articles/news are..... i think its the upper block it has to go in..

how can i do it.. the thread starter seems to have done it.. with help.. does it come with your specific theme or can i do it on my tolkien theme too..

can anyone tell me please

IchBin

That is the main menu. Each theme comes with its own custom menu. With the tolkein theme, you see the menu in the upper right and it extends vertically, not horizontally. If you want to put an extra menu in your theme in a block, read up a bit on HTML.
Simply putting a link like this in a block would get you started.
<a href="http://www.yoursite.com/"><img src="path/to/home.gif" /></a>

You then create all your images to give you an image bar by repeating the above code changing the image and where it links to.

Vivasvan

#6
hi

you know this is all i wanted to know?  simply just giving me that code right at the beginning on my first ever post on this topic.. would have just helped me so much.  Instead i was just told you cant do this .. or you cant do that... it would have been so much easier to just say you cant do it there... but you can do this.

really.  Im sorry your patience with me ran out.. but i was not getting any positive help or advice...I stated so many times im just a total noob on this and i am trying my best to do it myself.

Now I thank you and i can work on my site.  Its not nice being a noob on this site.. i will state that.  I havnt really been made to feel welcome to ask questions.. im not sure if i will on this site.. unless i really need to now. :-X

IchBin

All we expect is that people follow the guidelines (which I haven't see you do very much of) and try to do things themselves. That is how we all got to where we are at. If you are wondering how to do simple things such as making a menu with links, you could have found help MUCH faster with a TON more options with a simple google search. We are here to support as much as we can concerning TinyPortal, but we are not here to show people how to make their sites and do it for them. Glad the links could help you get started.

Vivasvan

hi

i agree.. to you it may seem very simple.  To me it isnt. I dont think i have done too bad anyhow with my site.. i did most of it myself.  and i have no html experience. at all

Vivasvan

Hi

Im hoping this is the right place to continue this post.. rather then start a new one.

using tp 1.0.5
smf 1.1.4

I have this code.. i want it to appear in the top block of my site www.orderofmiddleearth.com/home (some people might be sick of this site by now lolol) Its to replace the current menu buttons i have there.

what would i use to display the buttons as they should appear?  html or scriptbox?

<html>
<head>
<style type="text/css">

.hovermenu ul{
font: bold 13px arial;
padding-left: 0;
margin-left: 0;
height: 20px;
}

.hovermenu ul li{
list-style: none;
display: inline;
}

.hovermenu ul li a{
padding: 2px 0.5em;
text-decoration: none;
float: left;
color: black;
background-color: #FFF2BF;
border: 2px solid #FFF2BF;
}

.hovermenu ul li a:hover{
background-color: #FFE271;
border-style: outset;
}

html>body .hovermenu ul li a:active{ /* Apply mousedown effect only to NON IE browsers */
border-style: inset;
}
</style>
</head>

<body>
<div class="hovermenu">
<ul>
<li><a href="http://www.dynamicdrive.com">Dynamic Drive</a></li>
<li><a href="http://www.javascriptkit.com">JavaScript Kit</a></li>
<li><a href="http://www.codingforums.com">Coding Forums</a></li>
<li><a href="http://www.cssdrive.com">CSS Drive</a></li>
<li><a href="http://www.google.com">Google</a></li>
</ul>
</div>
</body>
</html>


that is the code... the buttons should look like this http://www.dynamicdrive.com/dynamicindex1/hover.htm

im just wondering how to put them in the top bloc so they do what they do on this site.