Created
April 16, 2015 06:36
-
-
Save AlexanderRD/b8d94553edcdf9216af6 to your computer and use it in GitHub Desktop.
Basic FluidReview jQuery Styling
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$( document ).ready(function() { | |
// Registration specific styling | |
$('#registration .logo').css({"text-align": "center","border-radius": "5px","background": "rgba(255,255,255,0.1)"}); | |
$('#registration').css({"border-radius": "5px"}); | |
// Login specific styling | |
$('#login').css({"background": "rgba(255,255,255,0.9)","border-top-width": "0"}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What page are you adding this jquery to? The home page doesn't have a javascript advanced question. Are you adding this to via their CSS plugin?
Or is this for designing your own registration page?