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 Thu Mar 01, 2012 6:19 pm

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 Fri Mar 02, 2012 5:26 am; 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 Thu Mar 01, 2012 6:52 pm

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 Thu Mar 01, 2012 7:59 pm

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 : 51569
Reputation : 3525
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 Thu Mar 01, 2012 8:20 pm

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 Thu Mar 01, 2012 8:27 pm

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 : 51569
Reputation : 3525
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 Thu Mar 01, 2012 9:14 pm

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 Thu Mar 01, 2012 9:20 pm

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 : 51569
Reputation : 3525
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 Thu Mar 01, 2012 9:38 pm

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 Fri Mar 02, 2012 4:25 am

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 Fri Mar 02, 2012 4: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;
   }
avatar
Guest
Guest


Back to top Go down

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

Post by magicm00n Fri Mar 02, 2012 5:25 am

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 Fri Mar 02, 2012 5:26 am

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 Fri Mar 02, 2012 5:37 am

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 Fri Mar 02, 2012 5:52 am

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 Fri Mar 02, 2012 7:26 am

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 Fri Mar 02, 2012 8:10 am

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 Fri Mar 02, 2012 11:40 am

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 Fri Mar 02, 2012 8:29 pm

Already solved, so this will be moved Wink

And please avoid double posting.
Jophy
Jophy
ForumGuru

Male Posts : 17922
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