Wrong blog layout after ugprade (1.7 to 2.5)

Joomla versions 2.5, 1.7 and 1.6 are all end-of-life since December 31st 2014 and are no longer supported. Please use Joomla 3.x instead.

Moderator: General Support Moderators

Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
Locked
Neuromante
Joomla! Apprentice
Joomla! Apprentice
Posts: 25
Joined: Wed Dec 07, 2011 9:23 am
Location: London, UK
Contact:

Wrong blog layout after ugprade (1.7 to 2.5)

Post by Neuromante » Sun Jul 08, 2012 11:41 am

Hi,
Title says all. Apart some minor CSS problems, my biggest issue is that the layout of my home site is messed up.

Where I should have a main article and then two columns with 4 articles each, what I have is a single column (like I wouldn't chosen the column layout) with 9 articles...

Any idea how can I fix that? In the backend, I have the right configutation. It is just the frontend which is not showing it right

Cheers
Last edited by humvee on Sun Jul 08, 2012 9:12 pm, edited 2 times in total.
Reason: Marked as resolved

User avatar
Per Yngve Berg
Joomla! Master
Joomla! Master
Posts: 30892
Joined: Mon Oct 27, 2008 9:27 pm
Location: Romerike, Norway

Re: Wrong blog layout after ugprade (1.7 to 2.5)

Post by Per Yngve Berg » Sun Jul 08, 2012 12:44 pm

There is missing some css in the frontend template.

Have you modified one of the core templates that got overwritten by the upgrade?

Try to clear the Joomla cache.

Use Firebug to investigate.

http://docs.joomla.org/Diagnostic_tools
http://docs.joomla.org/Using_Firebug_Wi ... la_Website


The layout will have the following classes:

Code: Select all

<div class="items-row cols-2 row-0">
<div class="item column-1">
<div class="item column-2">
CSS:

Code: Select all

.cols-2 .column-1 { 
float: left;
width: 48%;
}
.cols-2 .column-2 { 
float: right;
margin: 0px;
width: 48%;
}
.row-separator { 
border: 0px none currentColor;
clear: both;
display: block;
height: 1px;
margin: 0px;
}

Neuromante
Joomla! Apprentice
Joomla! Apprentice
Posts: 25
Joined: Wed Dec 07, 2011 9:23 am
Location: London, UK
Contact:

Re: Wrong blog layout after ugprade (1.7 to 2.5)

Post by Neuromante » Sun Jul 08, 2012 2:37 pm

Well, Per...

You have saved my afternoon... I was already prepraring a fresh installation, with the plan of copying then all the tables related to content, forum, menues, etc...

I simply copied your suggestion for the CSS code in the customl.css file I use, et voila! It works wonders

I am not using any core template. I actually removed them, which may be the problem. But in the fresh 2.5 installation I did, if I install the template I use... it works. Odd.

In any case, it does work, and I really appreciate your help and support. Thumbs up!

Takk!

Jorge


Locked

Return to “Migrating and Upgrading to Joomla! 2.5”