bbPress

Simple, Fast, Elegant

bbPress support forums » Themes

I fail to write the login form CSS

(6 posts)
  • Started 2 months ago by lstelie
  • Latest reply from _ck_
  • This topic is not resolved
  1. Hello,

    I have a little CSS problem

    I’m integrating BBpress with my weblog that uses Revolution blog theme.
    The url is http://luc.saint-elie.com/bbpress

    Its a WP 2.6 install with BBpress 1.0 alpha
    BBPress theme is based on the default kakumei

    I fail to put the login div right above BBPress breadcrumb menu (right under my header)

    If anyone with CSS knowledge (that I don’t have) has a little idea, I would be very happy

    Thanks in advance

    Luc

    Posted 2 months ago #
  2. Did you know that Brian Gardner released a Revolution theme for bbPress?

    http://www.revolutiontheme.com/magazine/bbpress/
    http://www.briangardner.com/blog/revolution-finally-meets-bbpress.htm

    Posted 2 months ago #
  3. Hello Chris

    yes I noticed, but I use the free version revolution blog that is slightly different (I don't like the classical forum look of the revolution BBpress theme, I love Kakumei discussion look) and I try to keep Kakumei look with just my blog specific header and footer

    Posted 2 months ago #
  4. The login form is so low because you specified position bottom -200px and that means for it's parent element.

    .login {
    	position: absolute;
    	bottom: -200px;

    If you wanted it 200px from the bottom of the header, that means either the header is not being closed properly or the header needs a position:relative;

    #header {position:relative;}

    or you could just change it to position from the top:

    .login {
    	position: absolute;
    	top: 20px;

    I am also concerned that it takes nearly half a minute for a page to completely load on your site.

    Posted 2 months ago #
  5. Thanks a lot _ck_ !

    For the time to display I suppose this comes from a problem between my hosting company (in Europe) and the US because either from home or from my office, display of page is quite instantaneous

    Thanks again !

    Posted 2 months ago #
  6. It must be the overseas hop. Your connect time is blistering fast in Europe. But the download time not so much.

    Vancouver (CA) Resolve time: 169 ms Connect time: 168 ms Download time: 1681 ms

    Amsterdam (NL) Resolve time: 10 ms Connect time: 10 ms Download time: 1747 ms

    Krakow (PL) Resolve time: 79 ms Connect time: 40 ms Download time: 699 ms

    New York (US) Resolve time: 108 ms Connect time: 109 ms Download time: 1430 ms

    Haifa (IL) Resolve time: 91 ms Connect time: 95 ms Download time: 1063 ms

    London (GB) Resolve time: 11 ms Connect time: 17 ms Download time: 566 ms

    Cologne (DE) Resolve time: 22 ms Connect time: 14 ms Download time: 1325 ms

    Amsterdam (NL) Resolve time: 11 ms Connect time: 10 ms Download time: 634 ms

    Posted 2 months ago #

RSS feed for this topic

Reply

You must log in to post.

Code is Poetry.