Search posterous

Search all posts and users. Type a name, type a favorite song title, whatever! See what comes up.
  

More posterous blogs











More recommended blogs »

Here are posterous posts filed under css...

what2day says...

Had to fix the birdie... this is how!

Logged in
Hit Edit
Pasted ... something like this, hmmm (see note below)

<div style="font-size: 11px; line-height: 13px; color: #330000; margin-top: 20px; font-family: Courier, mono; ">         _ 
        ('v') 
        (   )        "Birdie" by Susie Oviatt 
       ~/'~'~~</div>


(HTML doesn't do consecutive white spaces (feature, not bug) so to show ASCII art you need to force them. The necessary non-breaking-space-codes aren't showing inside the posterous code tags.  I'll try attaching a txt file)

 

Filed under: css, posterous-meta

Oz says...

There are lot's of sites (paid and free) that try to answer our questions in many domains. HowTo and DIY and stuff...

After the confirmed success stackoverflow that answers programmers questions, the real news is that there is a link at the bottom... to another site that I hope gets filled with good answers and it's a twin site called doctype and is aimed at... as they put it:
Doctype is a free question and answer site for web designers. You can ask questions about CSS, HTML, web design and email design.

Check the whole family

  • stackoverflow.com — programming Q&A
  • serverfault.com — sysadmin Q&A
  • superuser.com — computing Q&A
  • howtogeek.com — geek how to
  • Filed under: answers, c#, css, doctype, how-to, html, programming, sql, stackoverflow, web design

    MailChimp says...

    If you've ever sent an email campaign, you know that if your CSS is not coded inline, it is likely to get stripped out by email clients, which can make your email design pretty funky looking. Writing CSS inline can be time consuming, and repetitive. MailChimp has a CSS inline conversion tool built right in that will automatically transform all of your local styles into inline styles. Designers have found it so useful, we thought we'd share it with everyone else - even if you don't have a MailChimp account.

    Copy/paste your email code below, click Convert It!, and we'll give you a more email friendly version ready for sending!

    Filed under: CSS, email design, MailChimp Labs, web design

    Mandula says...

    I'm not one for spending time applying micro-optimisation to code, but when it's relatively simple and potentially improves the user-experience I'm willing to give it a try.

    I recently worked on a complex Merb site with a large amount of CSS and JS. With the client complaining of sluggish page load times I invested some time in exploring the results of Yahoo's YSlow plugin for Firebug. I started with optimising the filesize of the Javascript and CSS.

    Merb's asset helpers already has built in bundling, which is a step in the right direction (reducing the number of HTTP requests):

    This takes the three specified CSS files and bundles them all into one file called "app_bundle.css". This syntax can also be used for bundling JS. Note, by default assets are not bundled in development, meaning all three files will be included when testing. If you want to enable bundling in any environment set :bundle_assets in the Merb config to true:

    However, this simply concatenates all the files together - maintaining the file structure and whitespace. To further optimise we can minify the contents of the files. For this I use Cory ODaniel's ruby-yui gem, which wraps Yahoo's YUI Java command line compressor. To apply this to our bundled files we add callback to the asset bundler. Add the following code to your init.rb file:

    This overwrites the bundled file with the compressed format, saving bandwidth and reducing HTTP requests! Good, right?

    Caveats:

    Be careful with your bundled CSS. I've found that bundling invalid CSS can cause rendering problems in Safari that don't appear unbundled in Safari but still render fine in Firefox. The solution is obviously ensuring all your CSS is valid, but I think it's worth noting.

    Remeber, ruby-yui is just a wrapper for the Java command line YUI compressor. Deploying to a live server without Java installed means no compression! (now, who would make that kind of mistake?)

    Enabling Gzip on static files achieves a similar goal for the CSS files, but the minification reduces the size of the JS by replacing variable and function names with shorter names (amongst other things), something Gzip can't do.

    Filed under: css, javascript, merb, ruby, ruby-yui, yslow, yui compressor

    Was working on this last night and this morning.   taken what i have
    on the me.dm frontend and the blog pages and started to merge them
    together.   I was never totally happy with the http://me.dm
    intergration first time around so i have tweaked it a bit to make
    posting blog entries, photos and videos to my blog with the rezpondr
    api intergration section.  the slice part is easy however - the real
    work is making the api call elements for the media block.   but i'm
    really happy with the simple approach.

    I think i might actually start doing themes full time for tumblr and
    posterous.   I'm really enjoying it.

    Filed under: css, newdesign, newtheme, posterous, slicing

    30tage says...

    eFever.de beschäftigt sich in einem Rückblick mit der Vergangenheit von Counter-Strike Source. Im ersten Teil durchleuchtet der ehemalige CSS-Profi Marcus 'couNti' Simon die Geburt des Spiels, die folgenden Updates und die ersten Ausgeburten der Turnierlandschaft. Dabei spricht er über GIGA, die ESL und die kurzen Auftritten auf den World Cyber Games oder der CPL, welche mit ihren Einschätzungen, dass CSS Counter-Strike 1.6 ablösen könnte, falsch lagen.

    http://www.efever.de/index.php?content=artikel/artikel&id=967

    Filed under: CSS

    kntl says...

    this article very useful article about effective CSS usage.
     
    We’ve all had to achieve some effect that required an extra handful of divs or PNGs. We shouldn’t be limited to these old techniques when there’s a new age coming. This new age includes the use of CSS3. In today’s tutorial, I’ll show you eleven different time-consuming effects that can be achieved quite easily with CSS3.

    Filed under: css

    rajesh says...

    Here is how you can position an element at the center of a web page (both horizontally and vertically).

    The content of the div with the id 'centered', will be positioned at the center of the web page. The 'absolute' positioning ensures that it is positioned at the center w.r.t the webpage or document.Instead if you want to position an element relative to an enclosing div, changing docheight and docwidth variables accordingly ensures that your element is centered.

    This is often useful in situations where you want to display error messages like 404-page not found and for showing 'page redirect' messages.

    Filed under: css, programming, web2.0

    simonbingham says...

    To fix the IE fieldset background color overflow bug in Internet Explorer (IE) do the following.

    ---

    fieldset {
        position: relative;
        margin: 0 0 1em 0;
        background: #ffffcc;
    }

    legend {
        position: absolute;
        top: -.5em;
        left: .2em;
    }

    Filed under: css, ie

    bountybounty says...

    このサイトは、JavascriptやAjaxのメインとして紹介しているサイトです。
    Twitterにもすぐ紹介できるようにRetweetボタンもあります。
    このサイトの更新は早いのでJavascriptを多用している方は便利かもしれません。
    自分もよくjQueryを使うので参考にしています。

    AjaxRain.com
    http://www.ajaxrain.com/index.php

    Filed under: css, javascript, site, tool, web