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.

Profile on the right side not changing to left side

4 posters

Go down

Solved Profile on the right side not changing to left side

Post by magicm00n March 2nd 2012, 02:19

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, 13:26; edited 1 time in total
magicm00n
magicm00n
Active Poster

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

Back to top Go down

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

Post by magicm00n March 2nd 2012, 02:52

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?
magicm00n
magicm00n
Active Poster

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

Back to top Go down

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

Post by SLGray March 2nd 2012, 03:59

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.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51453
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

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

Post by magicm00n March 2nd 2012, 04:20

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?
magicm00n
magicm00n
Active Poster

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

Back to top Go down

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

Post by SLGray March 2nd 2012, 04:27

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.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51453
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

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

Post by magicm00n March 2nd 2012, 05:14

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.
magicm00n
magicm00n
Active Poster

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

Back to top Go down

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

Post by SLGray March 2nd 2012, 05:20

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.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51453
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

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

Post by magicm00n March 2nd 2012, 05:38

magicm00n
magicm00n
Active Poster

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

Back to top Go down

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

Post by magicm00n March 2nd 2012, 12:25

bump
magicm00n
magicm00n
Active Poster

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

Back to top Go down

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

Post by Guest March 2nd 2012, 12:47

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;
   }
avatar
Guest
Guest


Back to top Go down

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

Post by magicm00n March 2nd 2012, 13:25

TYVM! SOLVED!
magicm00n
magicm00n
Active Poster

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

Back to top Go down

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

Post by Guest March 2nd 2012, 13:26

Glad I could help. Razz
avatar
Guest
Guest


Back to top Go down

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

Post by magicm00n March 2nd 2012, 13:37

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.
magicm00n
magicm00n
Active Poster

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

Back to top Go down

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

Post by Guest March 2nd 2012, 13:52

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
avatar
Guest
Guest


Back to top Go down

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

Post by magicm00n March 2nd 2012, 15:26

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
magicm00n
magicm00n
Active Poster

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

Back to top Go down

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

Post by Guest March 2nd 2012, 16:10

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.
avatar
Guest
Guest


Back to top Go down

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

Post by MrMario March 2nd 2012, 19:40

Hello,

This all solved?
MrMario
MrMario
Helper
Helper

Male Posts : 22186
Reputation : 1839
Language : test

Back to top Go down

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

Post by Jophy March 3rd 2012, 04:29

Already solved, so this will be moved Wink

And please avoid double posting.
Jophy
Jophy
ForumGuru

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

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum