Change : Log in or Sign up Bubble Color

SnG

Member
Anyone know where I can find the code for the Log in or Sign up Bubble on top of the page? I want to change the color of that bubble.
 
Admin CP -> Appearance -> Templates -> login_bar.css

This is for the whole login form once it's expanded (at the top of the template):

Code:
#loginBar
{
	background-color: @primaryDarker;
	color: @primaryLighter;
	border-bottom: 1px solid @primaryLightish;
	position: relative;
	z-index: 1;
}

This is for the handle (at the bottom of the template):

Code:
#loginBar #loginBarHandle
{
	position: absolute;
	right: 0px;
	bottom: -20px;
	text-align: center;
	z-index: 1;
	padding: 0 10px;
	font-size: 11px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	margin-right: 20px;
	line-height: 20px;
	background-color: @primaryDarker;
	box-shadow: 0px 2px 5px @primaryDarker;
	color: @primaryLightest;
}

edit - Brogan wins :p
 
  • Like
Reactions: SnG
Top Bottom