The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Trouble with homepage message

4 posters

Go down

Trouble with homepage message Empty Trouble with homepage message

Post by Luke Frost December 16th 2012, 11:20 pm

I've had a few issues with the homepage message notice, which is used as an introduction on the forum I administrate: http://gproaus.forumotion.com/

The issues are simply:

- it wont let you use paragraphs
- it wont let you use links

It might be my inexperience with that type of HTML, but it's still frustrating. This is what's written in the coding for what I'm having trouble with:

Code:
<strong>  </p>
<p></p><p></p>
<p><p>There are only a few rules to abide by</p>
<p><font color="red">1. <u>Please use your real (GPRO) name</u>. Names like 'Michael Schumacher' or 'fastracer1234' wont be accepted. Reason: so people know who they're talking to.</p>
<p></p>
<p>2. <u>You must be an Australian or NZ manager</u> that plays GPRO -  <u><font color="blue">http://gpro.net/gb/gpro.asp</font></u></p>
<p></p>
<p>3. We're all here because we share a common passion for a game. Serious discussion can be natural, but bare in mind that a fun and positive attitude is the key to happiness & success :)</p></font></b>
<p></p>
<p><font color="black">Register here: <u></font> <font color="blue">http://gproaus.forumotion.com/g4-australian-managers</u></font></p>
<p></p>
<p><font color="black">Then, when accepted;</font></p>
<p></p>
<p><font color="black">sign up to the 'Australian managers' group:</font> <u><font color="blue">http://gproaus.forumotion.com/g4-australian-managers</u></font></p>

Any feedback would be much appreciated!!
avatar
Luke Frost
Forumember

Posts : 46
Reputation : 1
Language : English

Back to top Go down

Trouble with homepage message Empty Re: Trouble with homepage message

Post by P-Robs December 16th 2012, 11:23 pm

Perhaps this can help you figure out what is wrong with you coding... I am, as you stated, inexperienced with HTML but have found this to be a very helpful tool when "trying to create my own codes/messages...

http://www.webmonkey.com/2010/02/html_cheatsheet/

Good luck!
P-Robs
P-Robs
Forumember

Male Posts : 40
Reputation : 3
Language : English
Location : United States

http://hieraticskyacademy.forumotion.com/

Back to top Go down

Trouble with homepage message Empty Re: Trouble with homepage message

Post by Luke Frost December 16th 2012, 11:32 pm

Yep I've tried some similar pages to get the above working, including the link generator. It all just doesn't work.

As you'll see in the link posted above, the paragraph coding seems to be maxed out at one line, which makes the text look like some cheesy advertisement or something lol. The links would also make life easier for new registering users.
avatar
Luke Frost
Forumember

Posts : 46
Reputation : 1
Language : English

Back to top Go down

Trouble with homepage message Empty Re: Trouble with homepage message

Post by Mariofan13 December 16th 2012, 11:45 pm

This is the HTMl-Code for a link:
Code:
<a href="URL">LINKED TEXT</a>

With a <br />-tag you can make breaks Wink

There very much unnecessary <p>-tags in the code Wink
Mariofan13
Mariofan13
Forumember

Male Posts : 188
Reputation : 6
Language : German, English, Latin, 1337, HTML, CSS, BBCode, Wikitext
Location : Mushroom Kingdom

http://mario-forum.net

Back to top Go down

Trouble with homepage message Empty Re: Trouble with homepage message

Post by P-Robs December 17th 2012, 12:13 am

Mariofan13 wrote:This is the HTMl-Code for a link:
Code:
<a href="URL">LINKED TEXT</a>

With a <br />-tag you can make breaks Wink

There very much unnecessary <p>-tags in the code Wink

That's what I'm seeing. so many <p></p> tags that the format "thinks" you have just an empty space. if you are using <p></p> as your break, just replace those with a line break"<br>", which will actually space out the paragraphs.

I also see several incomplete tags. If you will give me like 15 minutes, I will rewrite that code for you and you should be able to just place that where you want. Also if you could provide me with a screenshot of what it SHOULD look like (type a new topic somewhere and preview then give a screenshot), it would be much easier.

UPDATE: This is what i came up with from the code you provided. I placed this right onto my own forum and I didn't see any problems come from it.

Code:

<strong><br>There are only a few rules to abide by:<br><br><font color="red">1. <u>Please use your real (GPRO) name</u>. Names like 'Michael Schumacher' or 'fastracer1234' won’t be accepted. Reason: so people know who they're talking to.</font color><br>2. <u>You must be an Australian or NZ manager</u> that plays GPRO - <a href=http://gpro.net/gb/gpro.asp</a><br>3. We're all here because we share a common passion for a game. Serious discussion can be natural, but bare in mind that a fun and positive attitude is the key to happiness & success.<br><a href= “http://gproaus.forumotion.com/g4-australian-managers” class=”postlink”> REGISTER HERE</a><br><font color="black">Then, when accepted, sign up to the <a href=”http://gproaus.forumotion.com/g4-australian-managers” class=”postlink”>‘Australian Managers' group</a></font></strong>

Oh! You can't use smilies in HTML... Sad


Last edited by schneizel el britannia on December 17th 2012, 12:48 am; edited 2 times in total (Reason for editing : Inserted rewritten code.)
P-Robs
P-Robs
Forumember

Male Posts : 40
Reputation : 3
Language : English
Location : United States

http://hieraticskyacademy.forumotion.com/

Back to top Go down

Trouble with homepage message Empty Re: Trouble with homepage message

Post by Luke Frost December 17th 2012, 5:19 am

YES!!! Thank you that worked!! Very Happy

Code:
<br> </br>

^ solution for anyone searching in the future.

You guys are legends!
avatar
Luke Frost
Forumember

Posts : 46
Reputation : 1
Language : English

Back to top Go down

Trouble with homepage message Empty Re: Trouble with homepage message

Post by Luke Frost December 17th 2012, 5:44 am

Okay, another problem.

The links provided using the examples provided by Brittania kind of redirect within themselves. Example:

Code:
http://gproaus.forumotion.com/%E2%80%9Dhttp://gproaus.forumotion.com/g4-australian-managers%E2%80%9D
avatar
Luke Frost
Forumember

Posts : 46
Reputation : 1
Language : English

Back to top Go down

Trouble with homepage message Empty Re: Trouble with homepage message

Post by SLGray December 17th 2012, 8:05 am

Please don't double/triple post. Your post need to be separated by 24 hours before bumping, replying or adding more information. Please use the edit button instead!


Trouble with homepage message Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51489
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Trouble with homepage message Empty Re: Trouble with homepage message

Post by P-Robs December 18th 2012, 4:06 am

Luke Frost wrote:Okay, another problem.

The links provided using the examples provided by Brittania kind of redirect within themselves. Example:

Code:
http://gproaus.forumotion.com/%E2%80%9Dhttp://gproaus.forumotion.com/g4-australian-managers%E2%80%9D

Perhaps I can help you more with a test account on your forum?
P-Robs
P-Robs
Forumember

Male Posts : 40
Reputation : 3
Language : English
Location : United States

http://hieraticskyacademy.forumotion.com/

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum