inherit
187476
0
May 18, 2020 16:00:31 GMT -8
Star's Legacy
1,019
December 2012
starshinelegacy
|
Post by Star's Legacy on Dec 15, 2015 16:42:11 GMT -8
Please move me if I'm in the wrong place. What I am looking for is to add content, links, text, etc to the banner without it being a hover so that it displays all the time. Is this possible and how would I go about doing it?
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Dec 18, 2015 4:00:01 GMT -8
Please move me if I'm in the wrong place. What I am looking for is to add content, links, text, etc to the banner without it being a hover so that it displays all the time. Is this possible and how would I go about doing it? I think this might get you started. If you go to your wrapper template and for example you could add the red where I indicated: <div id="banner-container" role="banner"> <div id="banner_linkies"> <a href="http://mylink.com">Link</a><br> <a href="http://mylink.com">Link</a> </div>
<div id="banner_extra_info"> Some extra things here </div> <h2 id="banner"> $[forum.title] </h2> </div> And then use absolute positioning to put them where you want and style things with css something like this: (If you put at the bottom of your style sheet, remove the <style> and </style> tags or you can just put that css with the style tags left there above this..<div id="banner-container" role="banner"> which I posted above. <style> #banner_linkies{ position:absolute; top:10px; left:10px; width:100px; z-index:130; } #banner_linkies a:link, #banner_linkies a:visited{ margin-bottom:8px; color:white!important; } #banner_linkies a:hover{ margin-bottom:8px; color:red!important; } #banner_extra_info{ position:absolute; top:10px; left:130px; width:150px; height:150px; border:1px solid red; z-index:130; } </style> Hope this gets you started. Any questions, just ask.
|
|
inherit
187476
0
May 18, 2020 16:00:31 GMT -8
Star's Legacy
1,019
December 2012
starshinelegacy
|
Post by Star's Legacy on Dec 18, 2015 9:56:56 GMT -8
Tumbleweed, [/a] and I am going to fiddle around with what I can do with it. So I have a dividing bar on the banner and I would like the content that is going to be placed on the banner to be on the right side of that line. How do I move it over to that side?[/ul]
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Dec 18, 2015 11:32:41 GMT -8
[/a] and I am going to fiddle around with what I can do with it. So I have a dividing bar on the banner and I would like the content that is going to be placed on the banner to be on the right side of that line. How do I move it over to that side?[/ul][/quote]Instead of left use right: So this..... left:10px; ...becomes this... right:10px;
|
|
inherit
187476
0
May 18, 2020 16:00:31 GMT -8
Star's Legacy
1,019
December 2012
starshinelegacy
|
Post by Star's Legacy on Dec 18, 2015 20:01:26 GMT -8
|
|
inherit
187476
0
May 18, 2020 16:00:31 GMT -8
Star's Legacy
1,019
December 2012
starshinelegacy
|
Post by Star's Legacy on Dec 23, 2015 9:37:10 GMT -8
Tumbleweed , [/b]: I fixed it! I am sorry, I figured it out finally after about a half hour. =p[/ul]
|
|
inherit
187476
0
May 18, 2020 16:00:31 GMT -8
Star's Legacy
1,019
December 2012
starshinelegacy
|
Post by Star's Legacy on Dec 23, 2015 10:04:55 GMT -8
Tumbleweed , [/b]: Once again I was able to work it out myself! ^^[/ul]
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Dec 27, 2015 20:43:41 GMT -8
Star's Legacy, I'm glad you were able to work things out. Sorry, I was away for the holidays and just no time for being online on Proboards.
|
|
inherit
187476
0
May 18, 2020 16:00:31 GMT -8
Star's Legacy
1,019
December 2012
starshinelegacy
|
Post by Star's Legacy on Dec 28, 2015 9:55:33 GMT -8
|
|