The Runboard Directory :: Games :: Realm Fighter (MMORPG) ~ Runboard
[Runboard Resources: Runboard Support Forums | Runboard Extra! | Customer Service Desk]
~ Board of the Week ~
Board of the Week
The Runboard Directory
 Games
  Realm Fighter (MMORPG)
Support  Search  RSS

runboard.com       Sign up (learn about it) | Sign in (lost password?)

Page:  1  2 

 
Realmfighterworld
Directory Friend
Top of the page

Registered: 05-2007
Location: United Kingdom
Posts: 13
Karma: 0 (+0/-0)
Avatar
Reply | Quote
Realm Fighter (MMORPG)


Hello 'guys and gals',

Just stopped by to have a peek at this weeks BOTW choices emoticon

But whilst I'm here i may as well post about our board!

http://www.runboard.com/brealmfighterworld


RealmFighterWorld was a board created specifically for a clan based within the up and coming MMORPG 'Realm Fighter'. However, we do discuss many subjects, and even discuss the game itself.

If any you are interested in MMORPG's then i suggest you come and pay us a visit! And perhaps even the games website too emoticon Realm fighter website (if 'advertising' is permitted?)

Edited to remove non-Runboard link as they are not allowed per the TRD rules sorry...


Last edited by Pastor Rick, 4/20/2008, 10:07 pm


---
Image
4/20/2008, 2:19 am Send Email to Realmfighterworld   Send PM to Realmfighterworld MSN Blog
 
Lesigner Girl
Directory Legend
Top of the page
|Premium User|

Runboard staff member

Registered: 11-2005
Location: YouTube/LesignerGirl
Posts: 2117
Karma: 83 (+97/-14)
Avatar
Reply | Quote
Re: Realm Fighter (MMORPG)


Hi Realmfighterworld,

It looks really good except for one little thing:

Image < click to see actual size

Most people still use a 1024x768 resolution, which is the resolution I used to take this screen grab. When you work on a design, you should either resize your window, view it at different screen resolutions, or use a tool like Browser Sizer to check your design in.

You could put the chat box at the bottom of your board, give it an id, and then add an anchor link to it at the top of the board. For example:

<embed id="chatbox" src="http://www.xatech.com/web_gear/chat/chat.swf"...

With the link to it:

<a href="#chatbox">Chatbox</a>

This is just one idea, but you might come up with a better one. emoticon


Edit to add: for the page background, add background-position: center top; to your body { ... } CSS definitions.

Last edited by Lesigner Girl, 4/20/2008, 3:14 am


---
Reliable Web Hosting
Are you &shy;­?


Image
4/20/2008, 3:09 am Send PM to Lesigner Girl Blog
 
Realmfighterworld
Directory Friend
Top of the page

Registered: 05-2007
Location: United Kingdom
Posts: 13
Karma: 0 (+0/-0)
Avatar
Reply | Quote
Re: Realm Fighter (MMORPG)


Thanks a bunch!

I did wonder how the page would look for anyone using a smaller screen res. Now i know.

Added your background code to the CSS, it looks to have done the trick for the background. And i think i will also use your second tip too!

---
Image
4/20/2008, 1:37 pm Send Email to Realmfighterworld   Send PM to Realmfighterworld MSN Blog
 
Queenyforever
Directory Guide
Top of the page
|Premium User|


Registered: 01-2007
Posts: 2371
Karma: 70 (+107/-37)
Avatar
Reply | Quote
Re: Realm Fighter (MMORPG)


HI DI HO Realmfighterworld! emoticon
Image
So nice to have you add your link here!
And I'm glad that LG was the first one here to welcome here as she is a genius in my mind, and can set you up for best viewing....
Best of luck with your board... emoticon

---
Image

Image

4/20/2008, 3:28 pm Send Email to Queenyforever   Send PM to Queenyforever
 
Lesigner Girl
Directory Legend
Top of the page
|Premium User|

Runboard staff member

Registered: 11-2005
Location: YouTube/LesignerGirl
Posts: 2117
Karma: 83 (+97/-14)
Avatar
Reply | Quote
Re: Realm Fighter (MMORPG)


Queeny, you're too kind. emoticon


You're welcome, Realmfighterworld! emoticon

The background image looks good and the chat box is no longer obscuring anything. emoticon However, the Runsearch form is still obscuring your board name in one of my browsers, and your board name plus Runboard.com link on the left. Also, the Runboard.com text is extending beyond the border of the orange box, and when I look at it in Opera and zoom out (thus no longer obscured by the Runsearch form), I see **** to the right of the Runsearch form, which is caused by this in your HTML:

****<div id="sidebar">

Additional suggestions:

Image


HTML

The HTML for the Runsearch form would be relocated and look like this:

<div id="banbox"><h1><a href="http://i191.photobucket.com/albums/z284/SRXT/template.jpg"></a></h1>

<form id="runsearch" name="searchform" method="post" action="http://www.runsearch.net/">
<span>Search Runboard.com</span><br />
*BOOLEAN Search AND/OR/NOT*<br />
<input class="inputbox" type="text" name="q" size="25" value="" />
<input class="submit" type="submit" value="Runsearch" />
</form>

</div>


The first line and closing </div> above are already there. That </div> at the end would be the end of your #banbox div.


CSS

Add body margin here:

body {
  margin:0;
  background-color : #000000;
  background-image : url(http://img253.imageshack.us/img253/9255/backbroundew3.jpg);
  background-attachment : fixed;
  font-family : verdana, arial, tahoma;
  background-position: center top;
}


Add position:relative; to #banbox:

#banbox {
  width : 760px;
  height : 243px;
  border : 3px solid #000000;
  background-image : url(http://i191.photobucket.com/albums/z284/SRXT/template.jpg);
  margin : 0 auto;
  text-align : center;
  margin-top : 10px;
  margin-bottom : 10px;
  position:relative;
}


Add #runsearch styling (notice it was taken out of the HTML above):

#runsearch {
  padding:3px;
  font-size:11px;
  font-family:tahoma;
  color: #000000;
  text-align: left;
  position: absolute;
  bottom: 3px; left: 5px;
  margin: 0;
}
#runsearch span {
  font-weight: bold;
}
#runsearch .inputbox {
  width: 80px;
  font-size: 11px;
  border: 1px solid #000000;
  background:#c0e5f7;
}
#runsearch .submit {
  font-size: 10px;
  border: 1px solid #000000;
  cursor: pointer;
  background:#4695d0;
}


I hope you like the suggested changes. emoticon

Before I submit this post, I also noticed an error in your CSS just now:

#sidebar{position:absolute;left:0;top:201px;width:100px;background-color:#f25826;

The required closing } is missing at the end of that.

---
Reliable Web Hosting
Are you &shy;­?


Image
4/21/2008, 12:04 am Send PM to Lesigner Girl Blog
 
Realmfighterworld
Directory Friend
Top of the page

Registered: 05-2007
Location: United Kingdom
Posts: 13
Karma: 0 (+0/-0)
Avatar
Reply | Quote
Re: Realm Fighter (MMORPG)


Queeny emoticon Thank you, and yes 'LG' as you described her has certainly helped!

Lesigner Hopefull we now have it looking a lot neater in all browsers, and thanks for taking the time out to post all the needed code!

The marque is in a different place, but it will probably now stay at the top and i'll just make an image instead of having it as text.

---
Image
4/21/2008, 11:13 am Send Email to Realmfighterworld   Send PM to Realmfighterworld MSN Blog
 
Queenyforever
Directory Guide
Top of the page
|Premium User|


Registered: 01-2007
Posts: 2371
Karma: 70 (+107/-37)
Avatar
Reply | Quote
Re: Realm Fighter (MMORPG)


Awesome Job....
Only one more thing I might suggest...(and mind you I am the WORST techno turd on earth....so this is just a suggestion)
Make that incredible signature of your's a "Linkable Signature", that links back to your board...
Here's a great helpful place to learn how to do that...(if you don't already know how)... emoticon
WIZARDS WORKSHOP.."ADDING AND LINKING A SIGNATURE" LINK


---
Image

Image

4/21/2008, 4:28 pm Send Email to Queenyforever   Send PM to Queenyforever
 
Realmfighterworld
Directory Friend
Top of the page

Registered: 05-2007
Location: United Kingdom
Posts: 13
Karma: 0 (+0/-0)
Avatar
Reply | Quote
Re: Realm Fighter (MMORPG)


Again, thank you, it seems those words are the only ones i have used so far!

'Wizards workshop' looks very technical indeed!

The new sig may not be as 'awesome' but i added your finishing touch anyway! emoticon

Last edited by Realmfighterworld, 4/21/2008, 5:37 pm


---
Image
4/21/2008, 5:37 pm Send Email to Realmfighterworld   Send PM to Realmfighterworld MSN Blog
 
Queenyforever
Directory Guide
Top of the page
|Premium User|


Registered: 01-2007
Posts: 2371
Karma: 70 (+107/-37)
Avatar
Reply | Quote
Re: Realm Fighter (MMORPG)


I still think that siggy is awesome! And now where ever you travel around the net......anyone can find your "home" just by clicking the siggy! emoticon
Good job there, my friend! emoticon
BTW....the Wizards workshop might look technical, but the WIZ is one great guy.....and he's aways willing to help too! emoticon

Last edited by Queenyforever, 4/22/2008, 3:19 pm


---
Image

Image

4/21/2008, 11:16 pm Send Email to Queenyforever   Send PM to Queenyforever
 
Lesigner Girl
Directory Legend
Top of the page
|Premium User|

Runboard staff member

Registered: 11-2005
Location: YouTube/LesignerGirl
Posts: 2117
Karma: 83 (+97/-14)
Avatar
Reply | Quote
Re: Realm Fighter (MMORPG)


You're welcome, Realmfighterworld! emoticon It's looking good! emoticon

Queeny, excellent suggestion you had, and not turdy at all! emoticon

---
Reliable Web Hosting
Are you &shy;­?


Image
4/21/2008, 11:53 pm Send PM to Lesigner Girl Blog
 


Add a reply

Page:  1  2 




Link to us   -  Blogs   -  Hall of Honour   -  Chat
You are not logged in (login)      Board's time is: 11/29/2009, 12:25 am

The RDS Showcase (click me to see more)