This still doesn't seem to be doing what I'd like. What I'm trying to get to is the phpmyfaq part of the site in French, and the articles in English. I suspect I could get this by re-saving all articles with fr as well as en, but I'm trying to avoid that.
In the 1.5.5 config I have English as the ...
Search found 55 matches
- Wed Jan 04, 2006 11:51 pm
- Forum: General discussions
- Topic: top 10/last 5 FAQs only appear in English
- Replies: 5
- Views: 8914
- Tue Jan 03, 2006 6:56 pm
- Forum: General discussions
- Topic: converting ~ when logging into admin
- Replies: 6
- Views: 15192
- Wed Nov 23, 2005 8:46 pm
- Forum: General discussions
- Topic: converting ~ when logging into admin
- Replies: 6
- Views: 15192
- Fri Nov 18, 2005 10:14 pm
- Forum: General discussions
- Topic: converting ~ when logging into admin
- Replies: 6
- Views: 15192
converting ~ when logging into admin
When I try to login to the admin page on a phpmyfaq I have in a public_html user directory, the tilde gets converted, and I can't login. The server is internal, unfortunately, so I can't show you firsthand. The url after I give it my login and password is:
http://internalserver/%257Eadiederich/tsfaq ...
http://internalserver/%257Eadiederich/tsfaq ...
- Fri Nov 18, 2005 9:52 pm
- Forum: General discussions
- Topic: Removing Top 10 when viewing FAQ
- Replies: 8
- Views: 15600
Removing Top 10 when viewing FAQ
(I thought I had seen this posted before, but can't find it now.) The gist was that when you are viewing the contents of a FAQ you really don't need the Top 10 list on the right. It just gets in the way, and for smaller screens makes the center column really, really small.
I'd like the Top 10 and ...
I'd like the Top 10 and ...
- Fri Nov 18, 2005 9:38 pm
- Forum: General discussions
- Topic: top 10/last 5 FAQs only appear in English
- Replies: 5
- Views: 8914
I just upgraded from 1.5.2 to 1.5.4 in part so I could test this. I disabled automatic content negotiation and submitted the change. I left the default as English.
Now, in Firefox 1.0.7 or opera 8.50, when I try and change the language on the front page it always automatically goes back to English ...
Now, in Firefox 1.0.7 or opera 8.50, when I try and change the language on the front page it always automatically goes back to English ...
- Tue Oct 25, 2005 7:05 pm
- Forum: General discussions
- Topic: top 10/last 5 FAQs only appear in English
- Replies: 5
- Views: 8914
top 10/last 5 FAQs only appear in English
All of my FAQs are in English. I do have some French users, however, and they tend to browse the FAQ in French. The Top Ten list, last 5 posted, and even the categories don't appear unless I have the language set as English.
Is there a way to have these display? I'm currently on 1.5.2.
Thanks for ...
Is there a way to have these display? I'm currently on 1.5.2.
Thanks for ...
- Wed Sep 28, 2005 10:25 pm
- Forum: General discussions
- Topic: Nested OL don't display nested
- Replies: 10
- Views: 16934
This fell out of the 1.5.2 release. I konw you were rushed on it, so no big deal. style.css reverted to:
Code: Select all
.main-content ul {
padding-left: 1em;
list-style: outside;
}
- Thu Sep 22, 2005 8:24 pm
- Forum: General discussions
- Topic: 1.5 moved non-public records?
- Replies: 9
- Views: 13421
- Thu Sep 22, 2005 8:08 pm
- Forum: General discussions
- Topic: Nested OL don't display nested
- Replies: 10
- Views: 16934
Fixed. The key was the li addition, plus this first piece:
I originally had
in the css page. Thanks for the help!
--
Andrew
Code: Select all
.main-content ul, ol {
padding-left: 1em;
}
.main-content li {
margin-left: 20px;
}
Code: Select all
.main-content ul {
padding-left: 1em;
list-style: outside;
}
--
Andrew
- Thu Sep 22, 2005 8:04 pm
- Forum: General discussions
- Topic: 1.5 moved non-public records?
- Replies: 9
- Views: 13421
- Thu Sep 22, 2005 7:59 pm
- Forum: General discussions
- Topic: Nested OL don't display nested
- Replies: 10
- Views: 16934
- Thu Sep 22, 2005 7:26 pm
- Forum: General discussions
- Topic: Nested OL don't display nested
- Replies: 10
- Views: 16934
- Thu Sep 22, 2005 6:53 pm
- Forum: General discussions
- Topic: 1.5 moved non-public records?
- Replies: 9
- Views: 13421
- Thu Sep 22, 2005 6:51 pm
- Forum: General discussions
- Topic: Nested OL don't display nested
- Replies: 10
- Views: 16934
That just shifted the space between the number and the paragraph, but didn't indent the numbers themselves in the sub-list. What I did was this in templates/style.css:
--
Andrew
Code: Select all
.main-content ul {
padding-left: 1em;
list-style: outside;
}
.main-content li { padding-left: 10px; }
Andrew