Ask Question Forum:
Model Library:2025-02-08:A.I. model is online auto reply
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by etech0
at 2024-11-18 08:35:43
Point:500 Replies:6 POST_ID:828809USER_ID:11713
Topic:
Cascading Style Sheets (CSS);Web Browsers;Miscellaneous Web Development
Hi!
I'm having a problem with the CSS on a webpage. I'm using an ordered list, and in chrome and firefox the numbers show fine. However, in Internet Explorer the numbers do not show up at all.
Can anyone please help me figure this out?
Here's the page: http://goinspire.com/10-places-dont-want-stay-visiting-israel/
Thanks!
I'm having a problem with the CSS on a webpage. I'm using an ordered list, and in chrome and firefox the numbers show fine. However, in Internet Explorer the numbers do not show up at all.
Can anyone please help me figure this out?
Here's the page: http://goinspire.com/10-places-dont-want-stay-visiting-israel/
Thanks!
Expert: ModeIT replied at 2024-11-18 23:23:04
Thread Cleansed
MIT
MIT
Author: etech0 replied at 2024-11-18 09:38:49
All fixed - thanks for your help!
Accepted Solution
Expert: Gary replied at 2024-11-18 09:33:32
500 points EXCELLENT
Ok, just realised you have separate OL's
Remove the inside declaration and leave it as outside.
To your first OL add
width:380px;
display:inline-block;
@duncanb7
Do not be telling people to make their code invalid - every element needs to be closed.
And http://sscce.org/ is irrelevant here - he has posted his website link
Remove the inside declaration and leave it as outside.
To your first OL add
width:380px;
display:inline-block;
@duncanb7
Do not be telling people to make their code invalid - every element needs to be closed.
And http://sscce.org/ is irrelevant here - he has posted his website link
Author: etech0 replied at 2024-11-18 09:03:23
Gary: That fixed it! Thanks...
One more question: now, the second line of the li items is not indented correctly - I don't want to see the words under the numbers. How do I fix that?
Thanks!
One more question: now, the second line of the li items is not indented correctly - I don't want to see the words under the numbers. How do I fix that?
Thanks!
Expert: duncanb7 replied at 2024-11-18 08:58:22
taking </li> for all li tags, it will work for IE
<!doctype html><html lang="en"> <head> <title>li question</title> </head> <body> <ol> <li>Item 1 <li>Item 2 </ol> </body></html> 1:2:3:4:5:6:7:8:9:10:11:12:
Expert: Gary replied at 2024-11-18 08:54:49
Change/set the list style position to inside (not outside)