Register - Login
Views: 99807099
Main - Memberlist - Active users - Calendar - Wiki - IRC Chat - Online users
Ranks - Rules/FAQ - Stats - Latest Posts - Color Chart - Smilies
05-03-22 08:17:22 AM
Jul - Projects and Creations - Need help makeing a layout New poll - New thread - New reply
Pages: 1 2Next newer thread | Next older thread
Dialga
Member
lol
Level: 28


Posts: 20/149
EXP: 125100
For next: 6238

Since: 05-20-09


Since last post: 12.3 years
Last activity: 10.4 years

Posted on 10-29-09 08:17:12 AM (last edited by Dialga at 10-29-09 11:29 AM) Link | Quote
This is a great layout.
Originally posted by Someone who apparently wrote this
Hi


____________________
TESTING SIGNATURE PART OF LAYOUT
THE DATA IS ASFDSSSDSSDF
Tarale
Catgirl
C:\ DOS
C:\ DOS RUN
RUN DOS RUN
Level: 89


Posts: 674/2030
EXP: 6719974
For next: 195927

Since: 07-23-07

Pronouns: she/her

Since last post: 2.0 years
Last activity: 1.6 years

Posted on 10-29-09 08:47:29 AM Link | Quote
HEY CAN YOU SEE ME
Do you know (X)HTML and CSS?

If not, this is an excellent opportunity to learn. Either you can try learning from scratch (HTML Tutorial) or you can start by taking someone else's layout and modifying it.

Plain ole HTML is becoming one of those basic skills that help a lot in multiple ICT sectors, so perhaps this may be a good opportunity to learn.



____________________
IIIIIIII'M A DODGY HACK
Dialga
Member
lol
Level: 28


Posts: 21/149
EXP: 125100
For next: 6238

Since: 05-20-09


Since last post: 12.3 years
Last activity: 10.4 years

Posted on 10-29-09 08:49:26 AM (last edited by Dialga at 10-29-09 08:28 AM) Link | Quote
I know NOTHING about CSS or HTML.
Edit: Now i know a little :p

____________________
Signature goes here...
ARGH...Why can't I ever get a post background to work?!?!
I cold watch that N64 logo for hours
...It's cold up here.
Tarale
Catgirl
C:\ DOS
C:\ DOS RUN
RUN DOS RUN
Level: 89


Posts: 675/2030
EXP: 6719974
For next: 195927

Since: 07-23-07

Pronouns: she/her

Since last post: 2.0 years
Last activity: 1.6 years

Posted on 10-29-09 08:58:39 AM Link | Quote
HEY CAN YOU SEE ME
I guess the next question is, do you want to learn? It's a pretty useful skill to have these days.

____________________
IIIIIIII'M A DODGY HACK
Dialga
Member
lol
Level: 28


Posts: 22/149
EXP: 125100
For next: 6238

Since: 05-20-09


Since last post: 12.3 years
Last activity: 10.4 years

Posted on 10-29-09 09:18:01 AM Link | Quote
The only thing i want to do is have a black background with a blueish text.

____________________
I command you to look at that N64 logo.
Tarale
Catgirl
C:\ DOS
C:\ DOS RUN
RUN DOS RUN
Level: 89


Posts: 676/2030
EXP: 6719974
For next: 195927

Since: 07-23-07

Pronouns: she/her

Since last post: 2.0 years
Last activity: 1.6 years

Posted on 10-29-09 09:46:36 AM Link | Quote
HEY CAN YOU SEE ME
Ah. Then you don't so much want help making a layout, you want someone to make a layout for you…

Do you have something to offer in return for somebody doing that favour for you?

____________________
IIIIIIII'M A DODGY HACK
Dialga
Member
lol
Level: 28


Posts: 23/149
EXP: 125100
For next: 6238

Since: 05-20-09


Since last post: 12.3 years
Last activity: 10.4 years

Posted on 10-29-09 09:59:32 AM Link | Quote
No, i want to make it myself but i don't know how.

____________________
I command you to look at that N64 logo.
Deleted User
Collection of nobodies
Posted on 10-29-09 10:00:19 AM (last edited by TheKinoko at 10-29-09 07:03 AM) Link | Quote
Originally posted by Dialga
The only thing i want to do is have a black background with a blueish text.

Well, that can be done very easily. Would be even simpler than my layout.

It's just matter of one div and a <font> tag.

By the way, you should separate your sig from your post a bit more. For users who have sig separation set to none, like me, the signature looks like it's part of your post.

____________________


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]

Did you know that, in japanese, 'kinoko' means 'mushroom'?
Dialga
Member
lol
Level: 28


Posts: 24/149
EXP: 125100
For next: 6238

Since: 05-20-09


Since last post: 12.3 years
Last activity: 10.4 years

Posted on 10-29-09 10:04:18 AM Link | Quote
How do i use the "font" tag?

____________________
I command you to look at that N64 logo.
Deleted User
Collection of nobodies
Posted on 10-29-09 10:11:58 AM Link | Quote
Man, you should really start searching for HTML tutorials. Just google search "html font tag" and you've got your answer...

____________________


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]
Tarale
Catgirl
C:\ DOS
C:\ DOS RUN
RUN DOS RUN
Level: 89


Posts: 678/2030
EXP: 6719974
For next: 195927

Since: 07-23-07

Pronouns: she/her

Since last post: 2.0 years
Last activity: 1.6 years

Posted on 10-29-09 10:21:47 AM (last edited by Tarale at 10-29-09 07:25 AM) Link | Quote
HEY CAN YOU SEE ME
Ideally you don't want to use the font tag. It is deprecated which means it's not valid.

OK, so you don't want to learn, but you want to do it yourself. Now you're just contradicting yourself, pal.

OK, you will need a div. A div tag defines a section or division in a HTML document. Everything within that division can be styled (using CSS) to look a certain way. With CSS you can change things like the font size, style, and colour, as well as the background image or colour, and much more.

First, the HTML part:

To create a div, you need an opening <div> and a closing </div> . Everything you want to change needs to go between those two tags.

<div> stuff inside a div </div>

You can change the style of a div by adding the style property, i.e. <div style="…">.

And then from there you'll need some CSS, to go between those two quotation marks…

For example:
<div style="background-color: black; color: white;"> stuff inside the div </div>

will create a black background with white text…

To turn that into a layout, you put the <div style="background-color: black; color: white;"> half into your Post Header, and the <div> into the Signature.

And that's about as basic as a post layout can get.

____________________
IIIIIIII'M A DODGY HACK
Dialga
Member
lol
Level: 28


Posts: 25/149
EXP: 125100
For next: 6238

Since: 05-20-09


Since last post: 12.3 years
Last activity: 10.4 years

Posted on 10-29-09 10:29:41 AM (last edited by Dialga at 10-29-09 07:30 AM) Link | Quote
YAY! it works!
Edit: Forgot "/"

____________________

Watcth is spin round n' round.
Deleted User
Collection of nobodies
Posted on 10-29-09 10:36:01 AM Link | Quote
I'm glad for you but... didn't you say you wanted blue-ish text? because the text is white here.

____________________


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]
Dialga
Member
lol
Level: 28


Posts: 26/149
EXP: 125100
For next: 6238

Since: 05-20-09


Since last post: 12.3 years
Last activity: 10.4 years

Posted on 10-29-09 10:39:42 AM (last edited by Dialga at 10-29-09 07:41 AM) Link | Quote


Fixed
BTW: how do i move the line up?

____________________


Watcth is spin round n' round.
Tarale
Catgirl
C:\ DOS
C:\ DOS RUN
RUN DOS RUN
Level: 89


Posts: 680/2030
EXP: 6719974
For next: 195927

Since: 07-23-07

Pronouns: she/her

Since last post: 2.0 years
Last activity: 1.6 years

Posted on 10-29-09 10:40:20 AM Link | Quote
HEY CAN YOU SEE ME
Of course it works! Would I lead you astray?

But you said blue text. Do you know what colour blue?

One thing you'll have to keep an eye out for is that it can be difficult to read some blues on black background. Pick a lighter blue if you can.

All you need to do is pick a blue (i.e. #70B4E7 and put those numbers in place of where it says "white" at the moment. Or maybe #7082E7 ?

____________________
IIIIIIII'M A DODGY HACK
Deleted User
Collection of nobodies
Posted on 10-29-09 10:43:45 AM (last edited by TheKinoko at 10-29-09 07:47 AM) Link | Quote
Yeah, that's not bad... but about that line... if I was you I'd put it under the post. It would help separating it from the sig.

By the way, is it just me or when I look at the source code in Firefox, I see useless <*font*> tags in his layout?

____________________


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]

Did you know that, in japanese, 'kinoko' means 'mushroom'?

Tarale
Catgirl
C:\ DOS
C:\ DOS RUN
RUN DOS RUN
Level: 89


Posts: 682/2030
EXP: 6719974
For next: 195927

Since: 07-23-07

Pronouns: she/her

Since last post: 2.0 years
Last activity: 1.6 years

Posted on 10-29-09 10:52:35 AM Link | Quote
HEY CAN YOU SEE ME
<div style="background-color: black; color: seablue;">

would have worked perfectly instead of adding font tags.

____________________
IIIIIIII'M A DODGY HACK
Deleted User
Collection of nobodies
Posted on 10-29-09 10:55:55 AM Link | Quote
That's right. Plus font tags are deprecated, as you said. So yeah, div forever

By the way, you might want to add "display: inline" in the div style, so you don't have an empty line under it...

____________________


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]
Dialga
Member
lol
Level: 28


Posts: 27/149
EXP: 125100
For next: 6238

Since: 05-20-09


Since last post: 12.3 years
Last activity: 10.4 years

Posted on 10-29-09 11:17:16 AM Link | Quote


Originally posted by Tarale
<div style="background-color: black; color: seablue;">

would have worked perfectly instead of adding font tags.


It did not work for me, it colored the link instead of the text


____________________


Watcth is spin round n' round.
Tarale
Catgirl
C:\ DOS
C:\ DOS RUN
RUN DOS RUN
Level: 89


Posts: 684/2030
EXP: 6719974
For next: 195927

Since: 07-23-07

Pronouns: she/her

Since last post: 2.0 years
Last activity: 1.6 years

Posted on 10-29-09 11:25:32 AM Link | Quote
HEY CAN YOU SEE ME
<div style="background-color: black; color: white;">
<br><font color="seablue"><hr>Fixed
<br>BTW: how do i move the line up?<br><br>--------------------<br></div>
<br></font>
<br>Watcth is spin round n' round.



Which link? Now you're starting to confuse me.

____________________
IIIIIIII'M A DODGY HACK
Pages: 1 2Next newer thread | Next older thread
Jul - Projects and Creations - Need help makeing a layout New poll - New thread - New reply


Rusted Logic

Acmlmboard - commit 47be4dc [2021-08-23]
©2000-2022 Acmlm, Xkeeper, Kaito Sinclaire, et al.

29 database queries, 13 query cache hits.
Query execution time: 0.109068 seconds
Script execution time: 0.030297 seconds
Total render time: 0.139365 seconds