inherit
222650
0
Jan 19, 2017 2:53:24 GMT -8
cynderangel
Hello!
17
June 2015
cynderangel
|
Post by cynderangel on May 18, 2016 18:30:37 GMT -8
I need help on this, I try doing this on my own but it just confuses me. ( I am new with this also.) Where do we exactly put the code in for the homepage code? So far I see is their is no specific place for it, I try the very top of the code and it doesn't work, I even tried to follow what you explain above but it doesn't seem to work. I am lost here. P.s I am trying to add my own shoutbox on the left side. Edit: I realized that you said to the bottom... I will try this. Edit2: I tried and did what you said so far, its still not working.
|
|
#eb7100
33409
0
1
Oct 19, 2024 14:37:42 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on May 19, 2016 8:03:07 GMT -8
I need help on this, I try doing this on my own but it just confuses me. ( I am new with this also.) Where do we exactly put the code in for the homepage code? So far I see is their is no specific place for it, I try the very top of the code and it doesn't work, I even tried to follow what you explain above but it doesn't seem to work. I am lost here. P.s I am trying to add my own shoutbox on the left side. Edit: I realized that you said to the bottom... I will try this. Edit2: I tried and did what you said so far, its still not working. The homepage-only code goes in your forum's global header, found in Structure > Headers & Footers > Global Header & Footer. If you want to move your shoutbox into the sidebar use the Javascript code from the Move Shoutbox thread, but instead of adding the move-shoutbox div element add a Style 3 container to your sidebar with the ID move-shoutbox and it will move it for you.
|
|
inherit
222650
0
Jan 19, 2017 2:53:24 GMT -8
cynderangel
Hello!
17
June 2015
cynderangel
|
Post by cynderangel on May 20, 2016 3:46:29 GMT -8
BrianThankyou! I think I understand, I will try this.
|
|
inherit
232373
0
Jul 4, 2016 9:24:32 GMT -8
callouscraze
3
May 2016
callouscraze
|
Post by callouscraze on May 21, 2016 10:15:12 GMT -8
Hey, in the "Content" box, what would I have to type/insert if I wanted paragraphs for each line?
|
|
#eb7100
33409
0
1
Oct 19, 2024 14:37:42 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on May 22, 2016 8:30:02 GMT -8
Hey, in the "Content" box, what would I have to type/insert if I wanted paragraphs for each line? Use a <br /> tag to insert a line break. Example: Result:
|
|
•?//L•
New Member
Jus Chillin..
Posts: 161
inherit
231611
0
May 15, 2022 3:46:04 GMT -8
•?//L•
Jus Chillin..
161
May 2016
haveachat
|
Post by •?//L• on May 23, 2016 12:24:53 GMT -8
Im not too sure how to add the latest threads to my side bar, can someone tell me..
Cheers Will
|
|
#eb7100
33409
0
1
Oct 19, 2024 14:37:42 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on May 23, 2016 12:26:49 GMT -8
Im not too sure how to add the latest threads to my side bar, can someone tell me.. Cheers Will You'd need to use the Recently Updated Thread Sidebar plugin in conjunction with this one. There's instructions in that plugin's help thread to make it show inside the Sidebar Redux plugin.
|
|
•?//L•
New Member
Jus Chillin..
Posts: 161
inherit
231611
0
May 15, 2022 3:46:04 GMT -8
•?//L•
Jus Chillin..
161
May 2016
haveachat
|
Post by •?//L• on May 23, 2016 13:33:39 GMT -8
|
|
inherit
232459
0
Dec 4, 2018 5:50:50 GMT -8
jcgenob
24
May 2016
jcgenob
|
Post by jcgenob on May 23, 2016 20:12:44 GMT -8
How do you create clickable links on the sidebar? Kind of like the navigation bar.
|
|
#eb7100
33409
0
1
Oct 19, 2024 14:37:42 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on May 24, 2016 8:45:45 GMT -8
How do you create clickable links on the sidebar? Kind of like the navigation bar. You'd use the HTML <a> tag.
|
|
inherit
232459
0
Dec 4, 2018 5:50:50 GMT -8
jcgenob
24
May 2016
jcgenob
|
Post by jcgenob on May 24, 2016 22:23:16 GMT -8
Brian Thanks! How would I get each link to go to the next line? For example: <a href="http://mlbdiamonddynasty.proboards.com/board/17/rowdy">Rowdy</a> <a href="http://mlbdiamonddynasty.proboards.com/board/15/got-runs">Got The Runs</a> After entering this the content read like this: Rowdy Got The Runs I want it to look like this: Rowdy Got The Runs
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,824
January 2015
msg
|
Post by Lynx on May 24, 2016 23:06:22 GMT -8
jcgenob, You can put a <br /> in between them, like so: <a href="http://mlbdiamonddynasty.proboards.com/board/17/rowdy">Rowdy</a> <br /> <a href="http://mlbdiamonddynasty.proboards.com/board/15/got-runs">Got The Runs</a>
|
|
inherit
232459
0
Dec 4, 2018 5:50:50 GMT -8
jcgenob
24
May 2016
jcgenob
|
Post by jcgenob on May 25, 2016 7:09:13 GMT -8
Brian Lynx Last question hopefully. How would I center the content in the sidebar? Thanks!
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,824
January 2015
msg
|
Post by Lynx on May 25, 2016 7:43:16 GMT -8
Brian Lynx Last question hopefully. How would I center the content in the sidebar? Thanks! There are a 3 of ways that I know of: the <center> tag, inline styling, and using a class: <center> tag: <center>Centered text here.</center>
Inline Styling: <div style="text-align: center;">Centered text here.</div>
Using a Class takes both steps above, but I believe is the preferred way. Let the HTML place the text, but let your CSS take care of its styling.
|
|
inherit
216224
0
Aug 1, 2024 1:18:46 GMT -8
Quozzo
408
November 2014
quozzo
|
Post by Quozzo on May 26, 2016 6:02:17 GMT -8
I wouldn't use the centre tag. It's deprecated in HTML5 which I believe PB uses and v6 definitely will. It still works though but it will affect the ratings on Google.
|
|