similar to: flash CSS styling

Displaying 20 results from an estimated 10000 matches similar to: "flash CSS styling"

2007 Sep 05
1
gsub question, not a regex question...including part of the original in the sub...
Hi all, I''ve got a simple bulletin board type of code in part of my application, and I want to implement phpbb-like tags for users to add to posts. I strip HTML out of the posts, of course. I can handle things like [b] => <b> with a simple gsub, but there''s one that is throwing me for a loop. I want users to be able to quote other users, and have the quoted text show
2006 Jan 30
5
url for image in css
Hi, I''d like to call a background image for every item in a list. Something like div#nav li.submenu {background: url(dropmenu.gif) 95% 50% no-repeat;} the image is in public/images/dropmenu.gif Thanks, Peter
2006 Jun 22
4
stylesheet linking and layouts
In my layout, I have something like (shortened for clarity): <html> <head> <%= stylesheet_link_tag "index", :media => "all" %> </head> <body> <div id="site-container"> ... <cut for space> <%= @content_for_layout %> ... <cut for space> </div> </body> A view action has another stylesheet defined
2009 Mar 02
3
Truncate function and html tags
I have a text field in the db for the body of user posts. Users submit the posts using the tinymce editor, which allows certain html tags. The posts are stored in the db with allowed html tags directly in the post, so I could have something like: <p>This post will try to eliminate the confusion regarding rails and the truncate function.</p> I am trying to display the first 300
2012 Nov 11
0
Spree commerce and styling menu CSS
Hi. I making a shop on spree e-commerce, and I have problem with style menu CSS. http://ns383595.ovh.net/test/menu.png . How can I edit CSS file on spree to have manu like in My template like this http://rafal-serwer.gogler.eu/intimiti/index.html -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2006 Mar 13
1
Styling pagination links ?
Hello, How to style the pagination links ? I simply try to set the number of the current page to another color. But I have the "..." also colored. Paginator have options to style ? Thanks
2006 Jan 25
1
Flash CSS issues
I''m have issues in IE6 with my CSS for my flash[:notice] and flash[:error]. My CSS is as follows (basically copied from backpack''s CSS file for testing purposes): #Flash { text-align: left; border: 1px solid #ccc; padding: 5px 5px 5px 30px; font-size: 14px; margin: 0 auto 12px auto; margin-right: 7px; } .login #Flash { margin-top: 12px; font-size:
2005 Jul 28
2
CSS and autocompleter
hi. I''m rewriting the code from my own save-yourself-if-you-can implementation of xmlhttprequest to scriptaculous autocompleter, and it''s all fine and dandy, except that I am having difficulty positioning the auto_complete div which contains the results returned by xmlhttprequest. the auto_complete div is always stuck in one place, it starts a little below and half
2006 Mar 09
2
handling events: mouseover, etc.
I''m having a hard time figuring out how to handle mouseover events w/ Ruby on Rails (esp. whether Javascript takes over, or the Controller should be used). I''m currently trying to create a simple mouseover info box showing the definition, and some other information, when certain words are moused-over. Say I have an array of Word objects that have 1) word name 2) definition
2006 Jan 25
3
Link_to within :flash
Is there any way to use a link_to method within a controller through a :flash notice? If a user enters an incorrect username/password, I want to have a link to a forgotten password form readily available. My newbie attempt at doing this resulted in the following error: undefined method `link_to'' for #<UserController:0x386aef8> I suppose I could easily have a normal link, was
2007 Nov 27
1
O/T div.fieldWithErrors styling
this is kinda trivial but I''m anal and it bugs me :) whenever there''s a error in the form the error field is wrapped with <div class="fieldWithErrors"> </div> this throws my form''s styling off because it puts too much space b/t fields and worse makes the form as wide as possible. How do I fix this? I''ve tried div.fieldWithErrors {
2006 Feb 12
3
AJAX to a table row
Hello- I''d like to throw a little AJAX into a table to allow the user to edit a single row of data inline rather than moving to another page. The row (which has N columns) would be swapped out for a row which has a single column (colspan="N") and the form inputs would be in that row. My question is, is this legal HTML? I can''t find anything that says either way.
2007 Jun 28
2
img element inside div not accessible with $$() or getElementsBySelector
I can''t access an img inside a div using the $$() syntax. Using getElementsBySelector doesn''t work either. Both return empty arrays. I can access it with getElementById, however. <div id="foo"> <img id="image" src="blah.jpg"> <div id="bar" </div> - Using $$(''#foo img'') returns an empty array - Using
2008 Apr 01
4
Trying to get Effect.Appear, Scale, Fade to work
================================================= Mon-03-31-2008, 11:04pm U.S.EDT Hello, I''m trying to get a website entry page to work properly, while learning Scriptaculous effects and javascript at the same time. I wanted to use a couple of effects to add a little flash-style animation. I managed to get the initial Appear to work but with a problem: the image that''s supposed
2006 Mar 28
3
AJAX/CSS issue (more UI focused)
All, This isn''t strictly a problem or issue with RoR but I wondered if someone might have some insight. I have a DIV on a page which I am using to "preview" the contents of a URL provided by the user. Basically, when the user clicks on a link, I do an AJAX call to an action which uses Net::HTTP to request the URL in question and then update the DIVs innerHTML attribute
2006 Oct 25
4
Flash messages stay up too long
I run a check on the address line parameters to make sure the user isn''t passing my list method a :year to search for that does not exist in the database, which would create null pointer exceptions. I then splash a flash message telling the user that the year doesn''t exist in the database. Then, if the user enters another year into the command line as an argument for the
2013 Apr 18
2
Styling Markdown approaches
Hi guys, I wrote a markdown based Web editor thing for my sister: http://ws.dabase.com/ And she has trouble styling blocks of markdown. Since <div markdown=1>markdown here</div> does not work on my Debian markdown binary. Is there a formal definition of markdown? Or some sort of conformance test? And certain markdown implementations I should be using, and certain ones I should be
2009 Jul 11
6
conditional link_to_remote not re-rendering
I have an int, ''floorfrozen,'' in my table, ''channels'' that can take a value of 0 or 1. When I render a page, an image in a link_to_remote is called differently depending what the value of channel.floorfrozen is, in a partial, as follows: <% if @channel.floorfrozen %> <%= link_to_remote image_tag("/images/icecube.gif"), {:url =>
2006 Apr 20
7
AJAX/RJS Updating of Table Rows
I''m trying to update a table row (i.e. replace a <tr></tr>) using AJAX/RJS but of course this cannot be done in IE (works fine in Firefox). I have googled but have not found any solutions, only a lot of discussion. Does anyone have a solution to this problem? Cheers, Nicholas
2008 Apr 01
10
Recalcitrant CSS background-image
My app has a stylesheet that includes this definition: div.loadimage { width:580px; height:310px; background-image: url("/images/load.gif") no-repeat center 0% 0%; } The purpose is to use with some nice javascript by Patrick H. Lauke for fading in images. The div is supposed to include a "loading image" image which is overwritten by the final image when it has finished