Items in Media Pro Light Skin Look Funny

AndyF
AndyF
@andyf
8 years ago
92 posts
A week ago or so, I did an update to Media Pro Light. Ever since, profile images, follower box, stats, tag cloud . . . all show up on the bottom left of each profile page (for example: under the timeline feed on that page or under the gallery images on the image gallery page...). They used to always show on the right side of every page.

What can I do to get it back to where it was?
updated by @andyf: 06/15/16 09:03:45AM
paul
@paul
8 years ago
4,326 posts
Are you running the stock skin or do you have any modified templates?
Can you show me an example of this?
Thanks


--
Paul Asher - JR Developer and System Import Specialist
AndyF
AndyF
@andyf
8 years ago
92 posts
No, I'm not running anything modified (stock skin). You can see the items showing up on the left side in this pic.
douglas
@douglas
8 years ago
2,790 posts
Got a link to the page your referring to?

It could possibly be HTML code truncated in a comment or the activity feed that is causing the layout to break.


--

Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos
AndyF
AndyF
@andyf
8 years ago
92 posts
Here is the link for the attachment above: http://social.decorativeconcretekingdom.com/dc-king but the same thing is happening on every profile page.
douglas
@douglas
8 years ago
2,790 posts
I'm not at my dev computer so I can't check if the MediaPro templates are actually coded this way, they shouldn't be, but this is why your seeing it:

<div class="row">
<div class="col9 last">
LEFT SIDE CONTENT
</div>
<div class="col4 last">
RIGHT SIDE CONTENT
</div>
</div>

That should be more like this:

<div class="row">
<div class="col9">
LEFT SIDE CONTENT
</div>
<div class="col3 last">
RIGHT SIDE CONTENT
</div>
</div>

check your profile_index.tpl and profile_item_*.tpl files to make sure the column classes are set correctly.

You could also try reloading the skin via your ACP > Marketplace > Tools > Reload Modules And Skins.


--

Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos
douglas
@douglas
8 years ago
2,790 posts
Just looked at the templates I have on my dev site and there is an issue which I'll fix once I get a chance.

For now, you'll want to open your profile_footer.tpl and change this:

<div class="col4 last">

to this:

<div class="col3 last">



--

Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos
AndyF
AndyF
@andyf
8 years ago
92 posts
Ok. That moved it over to the right (my customized FB box still looks a bit weird though. . . have to scroll to see all of it).

Tags