Profile on the right side not changing to left side Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
4 posters

    Profile on the right side not changing to left side

    magicm00n
    magicm00n
    Active Poster


    Female Posts : 1305
    Reputation : 217
    Language : English
    Location : The support forum of Forumotion

    Solved Profile on the right side not changing to left side

    Post by magicm00n March 2nd 2012, 1:19 am

    I've tried changing the profile in the forums from right to left by going to Admin Panel>> General>> Forum>> Configuration>> Page Structure>> Profile position in the messages>> Left.

    The problem is its still on the right despite changing it. What is the problem??


    Last edited by magicm00n on March 2nd 2012, 12:26 pm; edited 1 time in total
    magicm00n
    magicm00n
    Active Poster


    Female Posts : 1305
    Reputation : 217
    Language : English
    Location : The support forum of Forumotion

    Solved Re: Profile on the right side not changing to left side

    Post by magicm00n March 2nd 2012, 1:52 am

    I think I know why. Maybe its because I'm using a theme and it is already set in the CSS stylesheet. Anyone know which code to look for in the CSS stylesheet to change so that it will make my profile post on the left side?
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51448
    Reputation : 3521
    Language : English
    Location : United States

    Solved Re: Profile on the right side not changing to left side

    Post by SLGray March 2nd 2012, 2:59 am

    Please don't double/triple post. Your post need to be separated by 24 hours before bumping, replying or adding more information. Please use the edit button instead!





    Profile on the right side not changing to left side Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    magicm00n
    magicm00n
    Active Poster


    Female Posts : 1305
    Reputation : 217
    Language : English
    Location : The support forum of Forumotion

    Solved Re: Profile on the right side not changing to left side

    Post by magicm00n March 2nd 2012, 3:20 am

    slg wrote:
    Please don't double/triple post. Your post need to be separated by 24 hours before bumping, replying or adding more information. Please use the edit button instead!



    Don't you have a solution for me instead of correcting me with the rules?
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51448
    Reputation : 3521
    Language : English
    Location : United States

    Solved Re: Profile on the right side not changing to left side

    Post by SLGray March 2nd 2012, 3:27 am

    Please post your forum version and the forum's link.



    Profile on the right side not changing to left side Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    magicm00n
    magicm00n
    Active Poster


    Female Posts : 1305
    Reputation : 217
    Language : English
    Location : The support forum of Forumotion

    Solved Re: Profile on the right side not changing to left side

    Post by magicm00n March 2nd 2012, 4:14 am

    Im using phbb3 and im using a personalize theme which has CSS codes installed with the theme.

    I think I know why. Maybe its because I'm using a theme and it is already set in the CSS stylesheet. Anyone know which code to look for in the CSS stylesheet to change so that it will make my profile post on the left side?

    I said this in my previous post.
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51448
    Reputation : 3521
    Language : English
    Location : United States

    Solved Re: Profile on the right side not changing to left side

    Post by SLGray March 2nd 2012, 4:20 am

    Could you please post the link to the personalized theme?



    Profile on the right side not changing to left side Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    magicm00n
    magicm00n
    Active Poster


    Female Posts : 1305
    Reputation : 217
    Language : English
    Location : The support forum of Forumotion

    Solved Re: Profile on the right side not changing to left side

    Post by magicm00n March 2nd 2012, 4:38 am

    magicm00n
    magicm00n
    Active Poster


    Female Posts : 1305
    Reputation : 217
    Language : English
    Location : The support forum of Forumotion

    Solved Re: Profile on the right side not changing to left side

    Post by magicm00n March 2nd 2012, 11:25 am

    bump
    avatar
    Guest
    Guest


    Solved Re: Profile on the right side not changing to left side

    Post by Guest March 2nd 2012, 11:47 am

    Hi!

    1. Search in CSS Stylesheet for:
    Code:
    #wrap dl.postprofile {
       float: none;
       }
    and replace by:
    Code:
    #wrap dl.postprofile {
       float: left !important;
       }

    2. This:
    Code:
    div.postbody {
       width: 100%;
        float: none;
       }
    and replace by:
    Code:
    div.postbody {
       width: 100%;
        float: right !important;
       }

    3. Search:
    Code:
    .postprofile {
       color: #536482;
       margin: 5px 0 0px 0;
       min-height: 80px;
       border-left-style: solid;
       border-left-width: 1px;
       border-color: #dbdada;
       width: 22%;
       float: right;
       display: inline;
       position: relative;
       }
    and replace by:
    Code:
    .postprofile {
       color: #536482;
       margin: 5px 0 0px 0;
       min-height: 80px;
       border-left-style: solid;
       border-left-width: 1px;
       border-color: #dbdada;
       width: 22%;
       float: left !important;
       display: inline;
       position: relative;
       }

    4. Then:
    Code:
    #topicreview .postbody {
       width: auto;
       float: none;
       margin: 0;
       height: auto;
       }
    replace by:
    Code:
    #topicreview .postbody {
       width: auto;
       float: right !important;
       margin: 0;
       height: auto;
       }

    5. And finally:
    Code:
    .postbody {
       padding: 0;
       line-height: 1.48em;
       color: #536482;
       width: 76%;
       float: left;
       clear: both;
       }
    replace by:
    Code:
    .postbody {
       padding: 0;
       line-height: 1.48em;
       color: #536482;
       width: 76%;
       float: right !important;
       clear: both;
       }
    magicm00n
    magicm00n
    Active Poster


    Female Posts : 1305
    Reputation : 217
    Language : English
    Location : The support forum of Forumotion

    Solved Re: Profile on the right side not changing to left side

    Post by magicm00n March 2nd 2012, 12:25 pm

    TYVM! SOLVED!
    avatar
    Guest
    Guest


    Solved Re: Profile on the right side not changing to left side

    Post by Guest March 2nd 2012, 12:26 pm

    Glad I could help. Razz
    magicm00n
    magicm00n
    Active Poster


    Female Posts : 1305
    Reputation : 217
    Language : English
    Location : The support forum of Forumotion

    Solved Re: Profile on the right side not changing to left side

    Post by magicm00n March 2nd 2012, 12:37 pm

    Coddy one more thing please, can you please look in the codes again because my forum language is english but when i searched my forum on google my forum name and description is in Russian language. PLease check because I think somewhere in the codes its set to Russian language.
    avatar
    Guest
    Guest


    Solved Re: Profile on the right side not changing to left side

    Post by Guest March 2nd 2012, 12:52 pm

    That is not because that codes I gaved you. Be sure.

    I think this problem with language is not related with the problem in the first post.

    Administration Panel => General => Forum promotion => Search engines => Referencing : metatags => Site Description. Wink
    magicm00n
    magicm00n
    Active Poster


    Female Posts : 1305
    Reputation : 217
    Language : English
    Location : The support forum of Forumotion

    Solved Re: Profile on the right side not changing to left side

    Post by magicm00n March 2nd 2012, 2:26 pm

    Coddy wrote:That is not because that codes I gaved you. Be sure.

    I think this problem with language is not related with the problem in the first post.

    Administration Panel => General => Forum promotion => Search engines => Referencing : metatags => Site Description. Wink

    I know lol, I mean the codes that came with the theme in the CSS Stylesheet because I've checked the metatags its in english and I certainly dont know Russian. Can you look at the CSS Stylesheet from this theme im using because I think its something there that is making my description Russian.

    http://en.hitskin.com/search-a-skin/facebook-skin-156159.htm
    avatar
    Guest
    Guest


    Solved Re: Profile on the right side not changing to left side

    Post by Guest March 2nd 2012, 3:10 pm

    It's absolutelly impossible. CSS (Cascading StyleSheet) can't affect the forum language. So, description, language, forum title etc. depends only by HTML. So, I don't have any explanations for your problem, so I think you need to create another topic for this problem, and the problem with profile will be solved and locked. Wink

    Thanks.
    MrMario
    MrMario
    Helper
    Helper


    Male Posts : 22186
    Reputation : 1839
    Language : test

    Solved Re: Profile on the right side not changing to left side

    Post by MrMario March 2nd 2012, 6:40 pm

    Hello,

    This all solved?
    Jophy
    Jophy
    ForumGuru


    Male Posts : 17922
    Reputation : 836
    Language : English
    Location : Somewhere

    Solved Re: Profile on the right side not changing to left side

    Post by Jophy March 3rd 2012, 3:29 am

    Already solved, so this will be moved Wink

    And please avoid double posting.