Forum Replies Created
-
Author
-
joeldeckerParticipant
Here’s an example;
http://sweetspot.sweetgeorgiayarns.com/members/backtobasics/joeldeckerParticipantHi again,
I updated to a more recent version and this stopped working.
Is there a different way to lay this out. It goes in Quick CSS still right?
Thanks.joeldeckerParticipantHi, sorry if that wasn’t clear.
the triangle shaped arrow above the words, ‘Latest Registered Members’,
on the left side of the latest members carousel.
(Not the left/right arrows in circles to the right that scroll the avatars.)
I’m working on a screen shot now, need a place to host it.
Thanks.joeldeckerParticipantHi, this didn’t quite work;
.form-wrapper .right.hide-for-small { display:none;}
…it cut off the bottom of the avatar white boarder box….
is there another code that might?
Thanks.joeldeckerParticipantYes. Here’s what I have for the code (below). It changes the drop down fields to the right color while being scrolled down through, but not the background color of the top fields. I want to also change the color of the fields just as they are sitting on the page. Maybe that has to stay white though and I didn’t realize that. No problem if so.
form.custom div.custom.dropdown ul li.selected {
background: none repeat scroll 0 0 #333333;
color: #333333;
}
form.custom div.custom.dropdown ul li {
background: #c9c8c6;
color: #555555;
}
form.custom div.custom.dropdown a.current {
background-color: #c9c8c6;
border: 1px solid #DDDDDD;
color: #141414;
}joeldeckerParticipantThanks @sqadmin,
the background is still white though, and now the other changes stopped working. Any
other ideas? I’m adding this in Quick css, that ok?joeldeckerParticipantjoeldeckerParticipantSorry, maybe I wasn’t too clear.
I meant the background of the form fields.
That changes the background behind the fields.
Thanks for your help.joeldeckerParticipantIs there a way to do this without using the child-theme?
Having problems with that set-up and wondering if it can be done
using the Quick CSS in the styling options section of Sweetdate?
Thanks.joeldeckerParticipantThe background color change works great, but the url doesn’t seem to work. Any ideas?
joeldeckerParticipantNice! Do you know if there is a way to tweak the white boarder around the box?
joeldeckerParticipantCan the same be done to the background of the ‘latest members’ carousel
on the home page?joeldeckerParticipantWhere do we edit the front page search form currently?
When I open the file; ‘home-search-form.php’ I only get….
————————
<div class=”twelve columns”>
<div class=”row”>
<div class=”five columns”>
<?php do_action(‘kleo_bp_search_form’, (sq_option(‘home_search_members’, ‘1’) ==1?true:false) ); ?>
</div>
</div><!–end row–>
</div><!–end twelve–>
————————
not much to edit there as far as changing the text, to an H3 tag say.
Is that an option?
Thanks.joeldeckerParticipantThanks Robert,
this worked until I updated to the latest version.
Now the Avatars on the ‘members’ page are back to being circular, though in a white square frame.
Is there a way to update the code so the avatar’s image fills in the whole square space?
Thanks.joeldeckerParticipantI did this and it’s still showing up. Thought that would work as well.
Any other ways to hide the title, ‘Members’?
Thanks!joeldeckerParticipantThanks wattsjmw and sqadmin,
the ‘0 padding’ works great! Without forcing the space.
Any way to delete the main title all together?
JDjoeldeckerParticipantI am having some trouble activating the child-theme. I have installed both, current release, and when I activate the child theme I get the following message;
———————–
Warning: require_once(framework/constants.php) [function.require-once]: failed to open stream: No such file or directory in /home/content/82/11574682/html/wp-content/themes/sweetdate-child/functions.php on line 44Fatal error: require_once() [function.require]: Failed opening required ‘framework/constants.php’ (include_path=’.:/usr/local/php5_3/lib/php’) in /home/content/82/11574682/html/wp-content/themes/sweetdate-child/functions.php on line 44
———————–
I love the idea of the child theme, making all my changes there and just re-installing all the new updates simply by installing the parent theme, and have that make automatically update the child theme. But somewhere I got caught in this loop and can’t quite get out of it. I tried deleting both from the server and re-instaling both, but got the same message.
Thanks for your help.joeldeckerParticipantMight I be missing an update? I’ve followed all the code exactly, still can’t get this one to run right.
joeldeckerParticipantI added the following code into the functions.php file,
but the ‘About me’ paragraph is still not showing. Do I need to tweak the code or just paste it right in over the old code?
—————————————add_action(‘after_setup_theme’,’kleo_remove_actions’);
function kleo_remove_actions()
{
global $kleo_config;
//this is the details field, right now it take the “About me” field content
$kleo_config[‘bp_members_details_field’] = ‘About me’;
//this display the fields under the name, eq: 36 / Woman / Divorced / Berlin. Modify with the names of the fields you want to appear there
$kleo_config[‘bp_members_loop_meta’] = array(
‘I am a’,
‘Marital status’,
‘City’
);}
————————————— -
AuthorPosts