Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

Please show me where...

cxscxs
edited September 2006 in Vanilla 1.0 Help
Please show me where I change the attributes for these lines. Forgot your password? Apply for membership Trying to finish and test a theme and the above are driving me nuts since I can't find them. Thanks in advance!

Comments

  • If you are talking about the css, then it is in the people.css file. If you want to change the words, I'd assume it is in the definitions.php.

    For the css, here are a few things I messed around with for mine. I don't remember if I added any of these, so just add these to your css, or find them if they are in the file and change them...

    ul.MembershipOptionLinks {
    margin: 0px auto;
    width: 286px;
    background: #000;
    border: 0px solid green;
    height: 20px;
    }

    .MembershipOptionLinks li {
    width: 130px;
    overflow: hidden;
    white-space: nowrap;
    padding: 0px;
    margin: 0px;
    border: 1px solid green;
    }
    .MembershipOptionLinks a,
    .MembershipOptionLinks a:link,
    .MembershipOptionLinks a:visited {
    display: block;
    color: #3399CC;
    text-decoration: none;
    text-align: center;
    padding: 3px 0px 3px 0px;
    font-size:12px;
    }
    .MembershipOptionLinks a:hover {
    background: black;
    color: white;
    text-decoration: none;
    }
    -Brian
    -------------
    Zollinhofer.com
  • Thanks Brian but for some reason the text just isn't changing. This is what I'm using and the text remains dark blue. .MembershipOptionLinks { margin: 4px 0px 0px 6px !important; } .MembershipOptionLinks li { width: 132px; overflow: hidden; white-space: nowrap; padding: 0px; margin: 0px; } .MembershipOptionLinks a, .MembershipOptionLinks a:link, .MembershipOptionLinks a:visited { display: block; background: #333; color:#a1b7e3; text-decoration: none; text-align: center; padding: 3px 0px 3px 0px; font-size:12px; } .MembershipOptionLinks a:hover { color:#a1b7e3; text-decoration: underline; } .ForgotPasswordLink { position: absolute; z-index:100; } .ApplyForMembershipLink { padding-left: 136px !important; }
  • Here is what I do... I add the style:
    border: 1px solid red;
    to whatever I am trying to edit. As soon as the correct thing lights up in a red box, I know I found it. I don't know what to tell you as what I listed above works for mine. I guess just make sure you are editing the right file... It took me a while to find the right one. You can take a look at mine at http://math.zollinhofer.com/forum/ and view the source if you want to see what I did... Firefox Developer Extension is a must when doing this (if you don't already have it.)
  • I use a similar system, works well except when I try to edit a theme's css when I should be editting the extension css. Thanks for mentioning the "editing the right file" which triggered the aha! I needed.
  • No problem... but I'm confused... What extension did you need to edit (we are talking about the login page, right?) I'm almost positive that what I posted worked for me. Hmm...
  • GuestSignIn was the extension, maybe an extension overrides the css you posted? I sure don't know...
This discussion has been closed.