Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1341339

    Schw_ede
    Participant

    Hey,

    i’ve got the small issue that the rTMedia Section is not getting the same styling from X as the Rest of Buddypress.

    I could not find any settings to load a different style for rTMedia or any Code i could insert into my child-Theme functions.

    Website: https://eagle-six.com/mitglieder/eduard/media/

    Thanks for any kind of help

    #1341395

    Christian
    Moderator

    Hey there,

    Please give us more details or specifics so we could understand the issue better.

    Thanks.

    #1341475

    Schw_ede
    Participant

    How it should be:
    how it should be

    How it is:
    how it is

    i hope that helps

    #1341659

    Rupok
    Member

    Hi there,

    It seems you have the below code that’s causing the issue :

    .buddypress .x-item-list-tabs-nav > ul > li > a, .buddypress .x-item-list-tabs-nav > ul > li > span {
      background: #e6e6e6 none repeat scroll 0 0;
      color: rgb(34, 63, 74);
    }

    Let’s find and remove/change this to get expected result.

    Cheers!

    #1341744

    Schw_ede
    Participant

    i found the code, but removing it did not help. Even removing all my additional CSS did not change anything to this section.

    #1342576

    Rupok
    Member

    Hi there,

    Thanks for writing back. I can still see the code on your site – http://prntscr.com/dzjp7r

    Make sure to remove them and check again.

    Cheers!

    #1342728

    Schw_ede
    Participant

    yes I put it back in, because I could not see any difference.
    I removed the additional CSS completely once again, but as i said no results are visible.

    Thanks

    #1342749

    Schw_ede
    Participant

    One more thing: This page also keeps now reloading itself in the Custimzr, like some constant changes are made.

    #1342849

    Christian
    Moderator

    Would you mind providing us with WordPress Admin username / password so we can take a closer look?

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    Thanks.

    #1342867

    Schw_ede
    Participant
    This reply has been marked as private.
    #1342975

    Christian
    Moderator

    Please downgrade BuddyPress to the latest compatible version stated in https://community.theme.co/kb/version-compatibility/

    If the issue persists after downgrading, please deactivate all third party plugins and customizations and we’ll continue to investigate.

    Thanks.

    #1343014

    Schw_ede
    Participant

    i’ve downgraded buddypress to 2.7.3, removed all custom CSS and disabled all Plugins except: bbpress, buddypress and rTMedia. Still no results

    EDIT: Even switching to the parent theme does not help

    #1343026

    Schw_ede
    Participant

    ok, after some alternatives I found something similar to rTMedia: https://de.wordpress.org/plugins/mediapress/
    The styling there looks fine and everything works as intended

    Thanks

    #1343165

    Christian
    Moderator

    Glad you’ve sorted it out.

    #1358719

    Schw_ede
    Participant

    Hey,
    after some problems with Media Press, i decided to get back to rTMedia. After some research with the styling, i found the solution for the problem. Only problem is that i made those changes directly in the plugin file, because i’m not skilled enough with php to solve it with my functions.php. So i wanted to ask i the support could help me.

    What i just changed those lines:

    Line 40 (User Profile) and Line 99 (Group Profile)
    <div id="item-header" role="complementary">

    To:
    <div id="item-header" role="complementary" <strong>class="cf"</strong>>

    and

    Line 56 (user Profile) and Line 115
    <div class="item-list-tabs no-ajax" id="object-nav" role="navigation">

    to
    <div class="x-item-list-tabs-nav item-list-tabs no-ajax" id="object-nav" role="navigation">

    Here is the file located at: buddypress-media\templates\main.php
    http://pastebin.com/raw/0etnmMxb

    With some additional CSS i could customize it to my liking:

    result

    If anybody else need the CSS for this problem

    
    .buddypress #subnav.item-list-tabs {
        margin: 0 0 15px;
        text-align: center;
    }
    
    .buddypress #subnav.item-list-tabs>ul>li>a {
    margin: 0 10px;
    }
    
    .buddypress .item-list-tabs>ul>li span{
    margin-left: 5px;
    border: 1px solid rgb(44,105,129);
    padding: 3px 5px;
    font-size: 11px;
        
    }
    
    .buddypress .item-list-tabs>ul>li:hover span {
    border: 1px solid rgb(170,177,184);
    transition: border-color 0.15s linear; 
    }
    
    .rtmedia-list-item .rtmedia-album-media-count {
    background: rgb(44,105,129);
    }
    

    Thanks for any help