Hi there Ciaran,
Is it possible to add the following css to the evolution template (I don't know which css file would be appropriate but I'm guessing nexus.css), making an article text into 2 or 3 columns with uneven proportions:
<div class="one_fourth_first">
Your text here ...
</div>
followed of course by
<div class="three_fourth_last">
Your text here ...
</div>
or similarly for one-third / two-third division:
<div class="one_third_first">
Your text here ...
</div>
followed by
<div class="two_third_last">
Your text here ...
</div>
I have tried to just add this code in the JCE-editor, but nothing happens, so I think you must first add it to the CSS somewhere. The CSS I found with the template this code is from, was the following:
/*******************************************************************************/
/* Column Main - Component
/*******************************************************************************/
#colmain
{
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
text-align: justify;
overflow: hidden;
}
#colmain #component
{
margin: 0px 0px 25px 0px;
float:left;
overflow: hidden;
}
#colmain #component h1,
#colmain #component h2,
#colmain #component h3
{
margin: 0px 0px 15px 0px;
padding: 0px 0px 10px 0px;
}
#colmain #component .one_fourth_first,
#colmain #component .three_fourth_first,
#colmain #component .one_third_first,
#colmain #component .two_third_first,
#colmain #component .one_half_first
{
clear: both;
float: left;
}
#colmain #component .one_fourth,
#colmain #component .one_third
{
float: left;
}
#colmain #component .one_fourth_last,
#colmain #component .three_fourth_last,
#colmain #component .one_third_last,
#colmain #component .two_third_last,
#colmain #component .one_half_last
{
float: right;
}
Please let me know if I'm asking the impossible or simply too much. Any help is appreciated.
Kind regards,
Marjolein