Wordpress Themes - WP Forum at BFA
There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021

Wordpress Themes - WP Forum at BFA » WordPress Themes » Atahualpa 3 Wordpress theme »

Links and Members page in Buddypress + Atahualpa - Alignment woes


  #26  
Old Sep 17, 2010, 07:07 PM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
I can't see the send invites page so I can't determine the selectors for the avatars. Maybe it requires membership to see.
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #27  
Old Sep 18, 2010, 01:25 PM
Stang5_0
 
26 posts · Apr 2009
Phoenix, AZ
Send a message via ICQ to Stang5_0 Send a message via Yahoo to Stang5_0 Send a message via Skype™ to Stang5_0
Pretty much. I was trying to spare you that effort with my screenshots actually.
  #28  
Old Sep 18, 2010, 01:45 PM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
Well I joined the site and still cannot see where the send invites is
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #29  
Old Sep 18, 2010, 01:52 PM
Stang5_0
 
26 posts · Apr 2009
Phoenix, AZ
Send a message via ICQ to Stang5_0 Send a message via Yahoo to Stang5_0 Send a message via Skype™ to Stang5_0
GROUPS>Then pick a group
Then, the thrid link from the right should say "send invites"
I will friend you with a couple account so you have a list. I think you have to have friends before you get the option.
  #30  
Old Sep 18, 2010, 02:07 PM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
Let me know when I have some "friends" in the Zonies group. What do you call people from New York state? Yorkies?
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #31  
Old Sep 18, 2010, 10:04 PM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
For the friend list alignment try this
HTML Code:
ul#friend-list {
display:inline-block;
}
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #32  
Old Sep 18, 2010, 10:16 PM
Stang5_0
 
26 posts · Apr 2009
Phoenix, AZ
Send a message via ICQ to Stang5_0 Send a message via Yahoo to Stang5_0 Send a message via Skype™ to Stang5_0
Yorkies?
Um. Not sure on that one, some may not like it
I heard the term Zonies when I first moved here 15 years or so ago and I guess it sort of stuck.
Need to spend some time with the fam, but I will try this hopefully a bit later tonight.
Thanks, and hope the weekend is going well for you,
Stang
  #33  
Old Sep 18, 2010, 10:34 PM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
Fam is important. You have a good weekend as well.
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #34  
Old Sep 20, 2010, 08:39 AM
Stang5_0
 
26 posts · Apr 2009
Phoenix, AZ
Send a message via ICQ to Stang5_0 Send a message via Yahoo to Stang5_0 Send a message via Skype™ to Stang5_0
Quote:
Originally Posted by lmilesw
For the friend list alignment try this
HTML Code:
ul#friend-list {
display:inline-block;
}
Good morning sunshine!

That code attempted to align things below the list of names as opposed to moving the invite names over to the big blank area to the right. I'll leave it that way so you can see what I'm talking about. Funny, I did try something similar to your inline-block suggestion but got no movement like with your code. I think the friend-list had something to do with it, or lack of in my case.

Peace,
Stang
  #35  
Old Nov 9, 2010, 09:32 AM
2sticks
 
14 posts · May 2009
Quote:
Originally Posted by lmilesw
I don't know if you will need this plus the .item-avatar CSS but you can try it alone to see.
HTML Code:
ul#members-list li {clear:both;}
Also you don't need div#container {display:inline-block;} since the table one overwrites it. It is an either/or of those two to see which you liked.

After about 3 days of always wrestling with css on a ata 3.5.1 with BuddyPress, I'm very close but need something I haven't been able to figure. Don't know if it's about cols or table nesting if that makes sense.

Have a .reg_groups area for sign ups to select areas of interest while they sign up. In a standard BP theme it sits to the right of the reg form - I can only get it to sit on the left or right, before or after the submit button.

Does anyone know how I can either make the form into two or three columns, or nest it so it's like it was intended with regular BuddyPress?

Thanks always for the great assistance and knowledge.

Located at: http://12flat.tweekpress.com/register

Stu
  #36  
Old Nov 9, 2010, 10:05 AM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
Try changing the CSS as below. I added postion and top. Not sure about cross browser support though.
HTML Code:
.reg_groups {
float:right;
position:relative;
top:-350px;
width:49%;
}
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #37  
Old Nov 9, 2010, 10:15 AM
2sticks
 
14 posts · May 2009
Like a charm in all 3 up to date browsers I use. What can I use to reference all the CSS stuff that you know, that I have trouble with when digging around?

Thanks L.

Stu
  #38  
Old Nov 9, 2010, 10:45 AM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
I use Firebug with Firefox to find selectors and test CSS. To play around and learn CSS I use w3schools.com
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #39  
Old Nov 9, 2010, 12:36 PM
2sticks
 
14 posts · May 2009
I like firebug for page speed too, dev tools in chrome isn't bad - so much to learn. I appreciate all you do for Atahualpa and it's supporters.

Bookmarks

Tags
alignment, buddypress

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Members Area in Atahualpa bandsecretarypelpb Atahualpa 3 Wordpress theme 5 Aug 9, 2010 06:00 AM
Atahualpa and buddypress lordi Plugins & Atahualpa 2 Jun 10, 2010 11:37 AM
Atahualpa and Buddypress qbuster Atahualpa 3 Wordpress theme 3 Jun 10, 2010 07:24 AM
Atahualpa 3.4.01 Sidebar text alignment on home / news page Craig Atkinson Sidebars & Widgets 9 Jul 8, 2009 08:38 AM


All times are GMT -6. The time now is 02:11 AM.


Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.