Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 109
Search took 0.15 seconds.
Search: Posts Made By: ttkim
Forum: HTML & CSS 05-18-2013, 09:16 PM
Replies: 3
Views: 115
Posted By ttkim
Lol. This happens so often here. Basically,...

Lol. This happens so often here.

Basically, every server except a Windows one is case sensitive. So...

<img src="logo.jpg" alt="Home" width="691" height="77">

That needs to be changed to......
Forum: HTML & CSS 05-17-2013, 04:50 PM
Replies: 5
Views: 178
Posted By ttkim
The overflow:auto shows scrollbars because the...

The overflow:auto shows scrollbars because the containing elements is exceeding the width of the parent element.

Your #content and #sidebar add up to only 80%, but take a look inside your #sidebar...
Forum: HTML & CSS 05-17-2013, 02:50 AM
Replies: 5
Views: 179
Posted By ttkim
I must be looking at a different page. The div...

I must be looking at a different page. The div with checkout-link class only has one list on mine.
Forum: HTML & CSS 05-16-2013, 09:50 PM
Replies: 7
Views: 187
Posted By ttkim
Oh ok. So you have this right now (your FB icon) ...

Oh ok. So you have this right now (your FB icon)

<div id="grupoface">
<a href="https://www.facebook.com/groups/xboxlink/" target="_blank"><img...
Forum: HTML & CSS 05-16-2013, 09:32 PM
Replies: 5
Views: 179
Posted By ttkim
As DrDos said, you should give it a specific id...

As DrDos said, you should give it a specific id and hide it. That would be the best solution. If not, you could do this:

ul.links li:nth-child(2) {display:none;}

That will target the second...
Forum: HTML & CSS 05-16-2013, 09:27 PM
Replies: 3
Views: 152
Posted By ttkim
Something to take into consideration. The...

Something to take into consideration.

The method you posted works, but as I posted before, you can make it more concise. I used one div and two anchor tags. You are using one paragraph tag, two...
Forum: HTML & CSS 05-15-2013, 04:55 PM
Replies: 3
Views: 152
Posted By ttkim
You can probably do it that way, but there's a...

You can probably do it that way, but there's a better way to handle these things. To be honest, I'm not sure what the transparent gif is for.

Anyway, here's what you can do.

<div...
Forum: HTML & CSS 05-14-2013, 11:04 PM
Replies: 5
Views: 183
Posted By ttkim
You can use fluid widths, instead of fixed. ...

You can use fluid widths, instead of fixed.

.center {
width: 90%;
margin: 0 auto;
}
Forum: HTML & CSS 05-14-2013, 05:58 PM
Replies: 7
Views: 187
Posted By ttkim
I see the chat. Where is the facebook icon? Or,...

I see the chat. Where is the facebook icon? Or, did you not add it yet?
Forum: HTML & CSS 05-14-2013, 05:54 PM
Replies: 2
Views: 184
Posted By ttkim
You can just edit the current script that you...

You can just edit the current script that you have. First, let's there are a few lines in your script that you can take out.

function goto(id, t){
//animate to the div id....
Forum: HTML & CSS 05-13-2013, 05:12 PM
Replies: 6
Views: 206
Posted By ttkim
I can try helping you out. I don't see why a...

I can try helping you out. I don't see why a stylesheet can't just be uploaded. PM me. :)
Forum: HTML & CSS 05-13-2013, 05:05 PM
Replies: 3
Views: 205
Posted By ttkim
It doesn't turn white on my end when I click on...

It doesn't turn white on my end when I click on it. Did you try emptying your cache?
Forum: HTML & CSS 05-10-2013, 06:32 PM
Replies: 1
Views: 114
Posted By ttkim
I think there are a few possible solutions to...

I think there are a few possible solutions to this, but it's definitely one of the trickier ones to handle. Here's one trick that works. :)

Give your parent div relative positioning. Then just add...
Forum: HTML & CSS 05-10-2013, 06:18 PM
Replies: 1
Views: 90
Posted By ttkim
For SEO? Meta keywords = useless. Most major...

For SEO?

Meta keywords = useless. Most major search engines don't even take them into consideration. In fact, it can actually hurt you in Bing's case. Your competitor's can also look at them to...
Forum: HTML & CSS 05-10-2013, 06:11 PM
Replies: 2
Views: 116
Posted By ttkim
Well, there's one problem and that's you're using...

Well, there's one problem and that's you're using images. Normally, changing the font sizes or widths would work, but you are using images.

Now, there's a simple way to fix this. For example, you...
Forum: HTML & CSS 05-10-2013, 05:35 PM
Replies: 5
Views: 179
Posted By ttkim
What version of Safari are you using? Browser...

What version of Safari are you using? Browser shots doesn't seem to have issues rendering the font either.
Forum: HTML & CSS 05-10-2013, 05:31 PM
Replies: 2
Views: 148
Posted By ttkim
Margin: 0 auto does not work for absolutely...

Margin: 0 auto does not work for absolutely positioned elements.

For absolutely positioned elements, you can do this (since we know the width of the elements):

#goto a {
position:...
Forum: HTML & CSS 05-09-2013, 08:28 PM
Replies: 5
Views: 179
Posted By ttkim
Hmm...did you fix the issue? I'm looking at it...

Hmm...did you fix the issue? I'm looking at it with Safari, and the text looks fine to me.
Forum: HTML & CSS 05-08-2013, 08:17 PM
Replies: 5
Views: 194
Posted By ttkim
Most sites give their body a padding and margin...

Most sites give their body a padding and margin of 0. Here are some things that you did to your body.

body {
width: 960px;
margin: 0px auto;
padding: 10px 10px 0 10px;
}

Change padding to 0...
Forum: General web building 05-07-2013, 05:02 PM
Replies: 9
Views: 688
Posted By ttkim
You're in the US, but are your users mostly in...

You're in the US, but are your users mostly in the US?

In any case, I would recommend Future Hosting (http://www.futurehosting.com/). Give them a look. They're very popular and highly regarded in...
Forum: HTML & CSS 05-07-2013, 04:52 PM
Replies: 3
Views: 148
Posted By ttkim
I don't think it's the ie-specific stylesheet. I...

I don't think it's the ie-specific stylesheet. I could be wrong though. :)

As SB65 said, you're using a header element, which IE8 and below don't inherently support. You're also using HTML5...
Forum: HTML & CSS 05-03-2013, 05:05 PM
Replies: 3
Views: 177
Posted By ttkim
No problem. We've all been there when we miss...

No problem. We've all been there when we miss that one tiny little line of code. :thumbsup:
Forum: HTML & CSS 05-03-2013, 12:27 AM
Replies: 3
Views: 177
Posted By ttkim
They are not the same CSS. You are referencing...

They are not the same CSS. You are referencing two different stylesheets for the home page and the inner page.

Home page stylesheet:...
Forum: HTML & CSS 05-02-2013, 06:11 PM
Replies: 6
Views: 203
Posted By ttkim
You could put it directly in the HTML document,...

You could put it directly in the HTML document, but generally (not always), you want to keep them separate.

For example, you create one stylesheet that multiple pages can link to. You make a...
Forum: HTML & CSS 05-02-2013, 05:58 PM
Replies: 7
Views: 221
Posted By ttkim
The "correct" one uses jQuery for more than just...

The "correct" one uses jQuery for more than just scrolling. It controls the navigation too. It adds and removes the "active" class according to which link was clicked.

Take a look at this section....
Showing results 1 to 25 of 109

 
Forum Jump

All times are GMT +1. The time now is 06:56 PM.