Login x
User Name:
Password:
Social Links Facebook Twitter YouTube Steam RSS News Feeds

Members Online

»
0 Active | 13 Guests
Online:

LATEST FORUM THREADS

»
warfare
CoD4 Map + Mod Releases
Voting menu on maps
CoD+UO General
Hauling 911
CoDBO3 General

Forums

»

Welcome to the MODSonline.com forums. Looking for Frequently Asked Questions? Check out our FAQs section or search it out using the SEARCH link below. If you are new here, you may want to check out our rules and this great user's guide to the forums and the website.
For more mapping and modding information, see our Wiki: MODSonWiki.com

Jump To:
Forum: All Forums : Star Trek Voyager: Elite Force
Category: Star Trek Voyager: Elite Force MOD Support
Mapping, modeling, scripting, etc. questions, comments and chat.
Moderators: foyleman, Foxhound, Mystic, StrYdeR, batistablr, Welshy, DrBiggzz, supersword
Latest Posts
Subscribed Posts
Search
Restricted Access Topic is Locked
Page
Previous Page Next Page
subscribe
Author Topic: My portfolio
MMFSdjw~rb
General Member
Since: Dec 23, 2006
Posts: 3336
Last: Dec 23, 2006
[view latest posts]
Level 9
Category: Star Trek Voyager: Elite Force MOD Support
Posted: Sunday, Mar. 12, 2006 08:38 pm
Well I'm going to stick with no rollovers for the sake of time and the fact that I have very little.
I'll probably redo the whole thing not useing any tables, just CSS but I want to get more design/layout aspects of this finalized before that.

So, I've added to the 2d/digital page and the 3d/playable page.
I'm a bit concerned about the playable page, does that convey enough info? is it clear?
and I would have that layout duplicated for each map below it. is 3 screens enough?
Share |
FliX~rb
General Member
Since: Dec 23, 2006
Posts: 8484
Last: Dec 23, 2006
[view latest posts]
Level 10
Category: Star Trek Voyager: Elite Force MOD Support
Posted: Monday, Mar. 13, 2006 08:07 am
you might wanna add a little info text about the map, IE, where it is set, how many players it is for, how long it took you to build, how long it took to compile, a bit of technical info perhaps, how many brushes ect...
Share |
MMFSdjw~rb
General Member
Since: Dec 23, 2006
Posts: 3336
Last: Dec 23, 2006
[view latest posts]
Level 9
Category: Star Trek Voyager: Elite Force MOD Support
Posted: Monday, Mar. 13, 2006 07:37 pm
Ok, So I think this part (the playable maps section) would be much easier useing reletive & absolute position in CSS.

So I'm looking at that rollover thing as an example
looking at the source of this page
If I used the id="blobs" the same way they did in the ul tag, and put a second one below it so that it was,
Code Sample

<body>
<ul id="blobs">
 <li id="blob1"><a href="#"></a></li>
 <li id="blob2"><a href="#"></a></li>
 <li id="blob3"><a href="#"></a></li>
 <li id="blob4"><a href="#"></a></li>
 <li id="blob5"><a href="#"></a></li>
</ul>
<ul id="blobs">
 <li id="blob1"><a href="#"></a></li>
 <li id="blob2"><a href="#"></a></li>
 <li id="blob3"><a href="#"></a></li>
 <li id="blob4"><a href="#"></a></li>
 <li id="blob5"><a href="#"></a></li>
</ul>
</body>

Would the 2 of those be displayed on top of eachother?
or would this get me what I'm after?
Code Sample
<body>
<table>
<tr>
<td>
<ul id="blobs">
 <li id="blob1"><a href="#"></a></li>
 <li id="blob2"><a href="#"></a></li>
 <li id="blob3"><a href="#"></a></li>
 <li id="blob4"><a href="#"></a></li>
 <li id="blob5"><a href="#"></a></li>
</ul>
</td>
</tr>
<tr>
<td>
<ul id="blobs">
 <li id="blob1"><a href="#"></a></li>
 <li id="blob2"><a href="#"></a></li>
 <li id="blob3"><a href="#"></a></li>
 <li id="blob4"><a href="#"></a></li>
 <li id="blob5"><a href="#"></a></li>
</ul>
</td>
</tr>
</table>
</body>


does that make sense?
Share |
FliX~rb
General Member
Since: Dec 23, 2006
Posts: 8484
Last: Dec 23, 2006
[view latest posts]
Level 10
Category: Star Trek Voyager: Elite Force MOD Support
Posted: Monday, Mar. 13, 2006 10:41 pm
id wont work, IIRC, you can only have one of each ID, you will have to use class!
and no i dont think they will be positioned ontop of eachother, but CSS is very much trial and error based in my experiance! especialy if your working towards getting it cross browser compatible
Share |
MMFSdjw~rb
General Member
Since: Dec 23, 2006
Posts: 3336
Last: Dec 23, 2006
[view latest posts]
Level 9
Category: Star Trek Voyager: Elite Force MOD Support
Posted: Tuesday, Mar. 14, 2006 01:55 am
Guess I should have tried it before I asked.
Cause it worked.
I updated it.
The info under the maps is temp, I'll probably add more and adjust what's there as I keep going.

[edit]Question, I just downloaded Firefox to see what it looked like in there but it's not displaying right.
The background is white rather than #c6b89a.
Stuff is also not lined up the same.
IE-Right
FF-wrong
Share |
FliX~rb
General Member
Since: Dec 23, 2006
Posts: 8484
Last: Dec 23, 2006
[view latest posts]
Level 10
Category: Star Trek Voyager: Elite Force MOD Support
Posted: Tuesday, Mar. 14, 2006 08:19 am
in your CSS code
background-color= #c6b89a }

that should read
background-color: #c6b89a }

and all the other = are wrong too
Share |
MMFSdjw~rb
General Member
Since: Dec 23, 2006
Posts: 3336
Last: Dec 23, 2006
[view latest posts]
Level 9
Category: Star Trek Voyager: Elite Force MOD Support
Posted: Tuesday, Mar. 14, 2006 02:17 pm
lol oops.
going between html & CSS is confusing.
thanks. fixed.

[edit]hmmm... the playable page is still not lined up correctly.
The title "Playable Maps" is off center in FF but not in IE, either that or everything else is equaly off center in IE, not sure which.
Either way, I want it to look like it does in IE, in FF.

When I installed FF i checked to install some Dev tools, what in those can help me here?
Share |
FliX~rb
General Member
Since: Dec 23, 2006
Posts: 8484
Last: Dec 23, 2006
[view latest posts]
Level 10
Category: Star Trek Voyager: Elite Force MOD Support
Posted: Tuesday, Mar. 14, 2006 02:46 pm
first of all if youre working with CSS it is VERY important to have totaly valid HTML
so validate you page!
in FF with the webdev bar under Tools>validate HTML
Share |
Agent007~rb
General Member
Since: Dec 23, 2006
Posts: 27798
Last: Dec 23, 2006
[view latest posts]
Level 10
Category: Star Trek Voyager: Elite Force MOD Support
Posted: Tuesday, Mar. 14, 2006 06:22 pm
I ran into that problem, and it drove me crazy.  Basically, all you have to do to fix it is put <center> </center> tags around everything in your <body>.  That'll center it in FF.

And seriously, get it to look good in FF.  IE is usually wrong, because it's too loose, and lets you get away w/ sloppy stuff.  I was an IE person myself a few months ago, and wouldn't even think of using FF... Now it's all I use.
Share |
MMFSdjw~rb
General Member
Since: Dec 23, 2006
Posts: 3336
Last: Dec 23, 2006
[view latest posts]
Level 9
Category: Star Trek Voyager: Elite Force MOD Support
Posted: Tuesday, Mar. 14, 2006 08:15 pm
Yeah, I'm definately going to make sure it's right in FF.
I might even reinstall opera just to make sure it's right there aswell.
And I do have that whole part within the center tags.
My CSS is valid and I'm working on getting all the html valid.
Haven't gotten to playable page yet, hopefully once I do it'll all be sorted.

[edit]Ok, the home page Tentativly passed. So there's somthing that's still not quite right.
HERE is the validate page.

Is it these things
Quote
The HTTP Content-Type field.
The XML Declaration.
The HTML "META" element.

That it's looking for?

I pretty much don't know anything about these. I know I've see the meta tags alot but I don't know what purpose they acctualy serve.
Share |
Restricted Access Topic is Locked
Page
Previous Page Next Page
subscribe
MODSonline.com Forums : Star Trek Voyager: Elite Force : Star Trek Voyager: Elite Force MOD Support

Latest Syndicated News

»
Codutility.com up and runn...
Nice, and there still using the logo and template for the screenshots, which...
Codutility.com up and runn...
dundy writes...Quote:Call of Duty modding and mapping is barly alive only a ...
Codutility.com up and runn...
Mystic writes...Quote:It seems to me the like the site is completely dead? ...
Codutility.com up and runn...
It seems to me the like the site is completely dead?

Partners & Friends

»