GetDotted Domains

Viewing Thread:
"Urusei Machie"

The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.

Sat 18/11/06 at 21:41
Regular
Posts: 19,415
This is where I post problems and questions while I work on my Language/Travel website.

Link coming soon =)
Fri 02/02/07 at 17:44
Moderator
"Are you sure?"
Posts: 5,000
Hmmm... wrote:
> "L-T-L will be launching this January
> 2007."

>
> Today's the day ;¬)


Update today:
Website launching soon, hopefully before March

When I saw some of Machie's recent questions it did look like he may be some some way off ;¬)
Thu 01/02/07 at 18:39
Regular
"It goes so quickly"
Posts: 4,083
Hope you're getting there Machie :)
Wed 31/01/07 at 14:33
Moderator
"Are you sure?"
Posts: 5,000
"L-T-L will be launching this January 2007."

Today's the day ;¬)
Wed 24/01/07 at 15:57
Regular
"It goes so quickly"
Posts: 4,083
Are you talking about the <h1> element as a whole, or just the "Singapore Zoo" text within it? Either way, it'll be a simple CSS task, using either the whole element, or surrounding the word(s) you want to colour differently with a <span> element.

Whole:
h1 {
background: #fff;
color: #8d0e44;
}
<h1>Home &gt; Travel &gt; Singapore &gt; Singapore Zoo</h1>

Snippet:
h1 [B]span[/B] {
background: #fff;
color: #8d0e44;
}
<h1>Home &gt; Travel &gt; Singapore &gt; [B]<span>[/B]Singapore Zoo[B]</span>[/B]</h1>
Tue 23/01/07 at 20:57
Regular
Posts: 19,415
Ah thank you very much for that cjh =)

going back to an earlier problem you helped me with.

It's important to use the h1,etc tags as they get picked up by keywords. I'm using the h1 tag for my "You Are Here" thingie...

Home > Travel > Singapore > Singapore Zoo

The Singapore Zoo part the "current page title", I want to change the h1 colour to something else. How would I do that? I can do it if they were menu and menu2 classes but I'd like to use h1 as it's where there's good keywords.
Tue 16/01/07 at 17:48
Regular
"It goes so quickly"
Posts: 4,083
Machie:
"Is there any other way to centre a submit button?"

Forgive me if I've gone down the wrong track here, but I got a little lost reading over the last few posts :)

The submit button is an inline element, but doesn't follow the text-align CSS property as it isn't really text, so to centre it, you'll need to declare it as a block element, and apply equal left and right margins, which can be done, like so:

input[type="submit"] {
display: block;
margin-left: auto;
margin-right: auto;
}

... or using shorthand on the margin ...
input[type="submit"] {
display: block;
margin: 0 auto; /* 0 referring to the desired top and bottom value */
}

The only problem here is I think IE 6 doesn't support the CSS selector element[type="whatever"], so you may need to adjust it to use an id or class that you've set for the submit button, such as:

input[B]#submit[/B] {
display: block;
margin: 0 auto;
}
<input type="submit" [B]id="submit"[/B] value="Vote">
Mon 15/01/07 at 15:42
Regular
"Devil in disguise"
Posts: 3,151
Machie wrote:
> Putting it in the ul almost centered it all. How do I mess with
> the > figure? =) margin-bottom: -20px;

As ever its difficult to assert what you mean without seeing something. I can tell you how to format the list, what I cant do is tell you how to format it in the context of everything else around it as I cant see it. I assume you're talking about vertical centering here? You could try applying display:inline to the
    perhaps that does what you want.

    > I belive so. I guess they must have done something because they
    > used to cause problems for the forum in the past.

    Hm...maybe its from the message quoting. If you quote a message that already has a quoted message in it they remove excess >.

    > Okay I'll put it aside for now. I also noticed that Opera
    > doesn't like having the
    > submit button. Perhaps the > submit button would center but the view results link wouldnt.
    >
    > Is there any other way to center a submit button?

    Not really, you could apply centering to parent elements I guess.
Sun 14/01/07 at 21:55
Regular
Posts: 19,415
Garin wrote:
> As well as applying whatever margin/padding you want to ul.

Putting it in the ul almost centered it all. How do I mess with the
    so it puts it closer to the border. Perhaps a negative figure? =) margin-bottom: -20px;

    > Quoting tags worked previously didnt it?

    I belive so. I guess they must have done something because they used to cause problems for the forum in the past.

    > I cant answer that without seeing it. It could well be an
    > interpretation of how/where to apply padding/margins (especially
    > if you've got a mixture of divs and floated divs). Another thing
    > it might be is that if IE calculates an element doesnt have
    > sufficient width to hold the content it'll render it further
    > down the page.

    Okay I'll put it aside for now. I also noticed that Opera doesn't like having the
    tag is messing it. So the submit button would center but the view results link wouldnt.

    Is there any other way to center a submit button?
Sun 14/01/07 at 19:55
Regular
"Devil in disguise"
Posts: 3,151
Machie wrote:
> What could I use instead of
    ? A div around the
    > 'answers'?

    A div works of course, but the best way to do it is..

    <ul style="list-style-type:none;">
    <li><input type="Radio" name="Vote" value="1">Xbox</li>
    <li><input type="Radio" name="Vote" value="2">Xbox 360</li>
    <li><input type="Radio" name="Vote" value="3">PS2</li>
    <li><input type="Radio" name="Vote" value="4">PS3</li>
    <li><input type="Radio" name="Vote" value="5">Wii</li>
    <li><input type="Radio" name="Vote" value="6">Other</li>
    </ul>


    As well as applying whatever margin/padding you want to ul.

    > It worked but then it put the link on the same level as the
    > submit button. How can I add a space between them.
    will
    > just put the link right underneath.



    is fine really.

    > Quoting this message really messed up all
    > the tags. I don't think it likes all the < >.

    Quoting tags worked previously didnt it?

    > Do you know a way I might force the poll div to stay at the top
    > of the right column?

    I cant answer that without seeing it. It could well be an interpretation of how/where to apply padding/margins (especially if you've got a mixture of divs and floated divs). Another thing it might be is that if IE calculates an element doesnt have sufficient width to hold the content it'll render it further down the page.
Sun 14/01/07 at 19:24
Regular
Posts: 19,415
Machie wrote:

> It worked but then it put the link on the same level as the
> submit button. How can I add a space between them.
will
> just put the link right underneath.

I'm tempted to use <br/><br/> but I'm guessing that's a no no?

Freeola & GetDotted are rated 5 Stars

Check out some of our customer reviews below:

Brilliant service.
Love it, love it, love it!
Christopher
Simple, yet effective...
This is perfect, so simple yet effective, couldnt believe that I could build a web site, have alrealdy recommended you to friends. Brilliant.
Con

View More Reviews

Need some help? Give us a call on 01376 55 60 60

Go to Support Centre
Feedback Close Feedback

It appears you are using an old browser, as such, some parts of the Freeola and Getdotted site will not work as intended. Using the latest version of your browser, or another browser such as Google Chrome, Mozilla Firefox, or Opera will provide a better, safer browsing experience for you.