Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

Badges

Any minute now…

mallow005

Username
mallow005
Joined
Visits
43
Last Active
Roles
Member
Badges
0
Points
0
Posts
17

Comments

  • Hey guys, Thought I'd pitch in. Here's a slightly modified tango.txt file to include more variations of smilies and some more emotes from the tango project. I also made the aliases more semantic (rather than :face-smile: it's just :smile:).# see ht…
    in Smile Comment by mallow005 March 2007
  • Hey guys, Thought I'd pitch in. Here's a slightly modified tango.txt file to include more variations of smilies and some more emotes from the tango project. I also made the aliases more semantic (rather than :face-smile: it's just :smile:).# see ht…
    in Smile Comment by mallow005 March 2007
  • Is it just me, or does "Add a poll to this discussion" not work? I will look into it.
    in Poll Comment by mallow005 March 2007
  • Is it just me, or does "Add a poll to this discussion" not work? I will look into it.
    in Poll Comment by mallow005 March 2007
  • Hurray, I fixed it. I changed line 122 of Discovery/default.php from GetUrl($this->Context->Configuration, 'settings.php', '', '', '', '', 'PostBackAction=Applicants') to GetUrl($UserManager->Context->Configuration, 'settings.php', '', …
  • After upgrading to Vanilla 1.1.1, the Applicant Discovery extension throws this error when a user submits their application.Fatal error: Using $this when not in object context in /home/mallow00/public_html/cogsi/extensions/Discovery/default.php on l…
  • Hurray, I fixed it. I changed line 122 of Discovery/default.php from GetUrl($this->Context->Configuration, 'settings.php', '', '', '', '', 'PostBackAction=Applicants') to GetUrl($UserManager->Context->Configuration, 'settings.php', '', …
  • After upgrading to Vanilla 1.1.1, the Applicant Discovery extension throws this error when a user submits their application.Fatal error: Using $this when not in object context in /home/mallow00/public_html/cogsi/extensions/Discovery/default.php on l…
  • Check out this thread: http://lussumo.com/community/discussion/5828/2/a-tad-unneeded
  • Not necessarily, it depends what kind of extensions they are. If they are well written Javascript extensions, they probably can be.
  • 3 requests at 17k vs 7 requests at 80k Great improvement!
  • Right, that's only with one DD per DT though.
  • "A list of stuff", in the context of the Simplebits discussion, is referring to a list of completely random items and a very non-descript header, so I don't think even Bowman would side with a DL in the end. He was merely trying to tell us that we s…
  • @skube: Wow! Sorry about that, I didn't even check the markup. You are indeed correct when you say that the H2 should definitely NOT be nested in a list, that's terrible! I assumed that it was like this: Title item item2 As for the simpleb…
  • Just a note, the points you should be looking to optimize is NOT the size, but the amount of HTTP Requests. There are some papers on the subject, but basically the amount of HTTP Requests are the deciding factor on site loading time and responsivene…
  • Ah, yeah I didn't check out the fixed width pages... I wonder why they were done differently. MaxM: Your layout is done completely in tables, I can't help you there :(
  • Hi Limundo, Sorry about that, I gave you the wrong line number. For some reason Firebug said it was line1, I guess Vanilla dynamically optimizes the CSS. I checked your site again and it still says you are using height 100%, here is the correct fix…
  • Vanilla.css Line 152: Change "float: left" to "float: right" Change "margin-left: 18px" to "margin-right: 18px" Line 244: Change "margin: 0px 18px 0px 235px" to "margin: 0 235px 0 18px" To fix the gradient/border, go to the stylesheet directory a…
  • Hi Limundo! Did you modify the CSS manually? If you remove the "height: 100%" in vanilla.css line 1 (#Body, #Form h2, #Form p), it will work. For me, it is set to height: 1%, this is probably to fix the clearfix for IE6. I'm guessing you modified…
  • I like it! How hard would it be to write this script (PHP or bash)?
  • I think SpookyET just means prepending the element tag before all classes and IDs and the parent elements. While not necessary for IDs, it helps for readability and maintainability (can tell what kind of element it is just from reading the styleshee…