[SOLVED] Portfolio Personal text, I want to remove

Elegant Joomla template designed especially for both professional and personal website presentation.
GK User
Thu Sep 16, 2010 3:33 pm
Where do i find that 2 vertical items, by a style hidden, incase I want them back again later. Where is the css class for them ?
User avatar
Senior Boarder

GK User
Fri Sep 17, 2010 7:50 pm
Just seconding this question so I'm notified when an answer is posted. Thanks.
User avatar
Fresh Boarder

GK User
Fri Sep 17, 2010 8:49 pm
Hi

It's on template parameters and can be set only for align blocks.
This is mention on the Helpfile. ;)

Cheers
User avatar
Platinum Boarder

GK User
Fri Sep 17, 2010 10:21 pm
as far as i have tested, when deleting the text, it reappears in the backend as the default text, but not on the frontend... so this way you can hide it ...
User avatar
Platinum Boarder

GK User
Fri Sep 17, 2010 11:10 pm
explodedk wrote:
as far as i have tested, when deleting the text, it reappears in the backend as the default text, but not on the frontend... so this way you can hide it ...


Right...but that's not right. :huh:
The problem is that if someone don't want to use the vertical title and saves, so he cleans the field and it's fine for the first time on frontend. But if the user makes any other change on template parameters, this will bring up again the default value.

So please make this change. I will recommend this to our programmer and if he agrees, it will be change also on the next update.

Please open templateDetails.xml file and find this lines:

Code: Select all
<param name="topsl1_vtext" type="text" label="Top 1-6 vertical text" description="Here you can set text visible on right side of position Top 1-6" default="Personal" />
<param name="topsl2_vtext" type="text" label="Top 7-12 vertical text" description="Here you can set text visible on right side of position Top 7-12" default="Portfolio" />
<param name="topsl3_vtext" type="text" label="Top 13-18 vertical text" description="Here you can set text visible on right side of position Top 13-18" default="Blog" />
<param name="botsl1_vtext" type="text" label="Bottom 1-6 vertical text" description="Here you can set text visible on right side of position Bottom 1-6" default="Bottom content" />
<param name="botsl2_vtext" type="text" label="Bottom 7-12 vertical text" description="Here you can set text visible on right side of position Bottom 7-12" default="Additional content" />


replace with

Code: Select all
<param name="topsl1_vtext" type="text" label="Top 1-6 vertical text" description="Here you can set text visible on right side of position Top 1-6" default="" />
<param name="topsl2_vtext" type="text" label="Top 7-12 vertical text" description="Here you can set text visible on right side of position Top 7-12" default="" />
<param name="topsl3_vtext" type="text" label="Top 13-18 vertical text" description="Here you can set text visible on right side of position Top 13-18" default="" />
<param name="botsl1_vtext" type="text" label="Bottom 1-6 vertical text" description="Here you can set text visible on right side of position Bottom 1-6" default="" />
<param name="botsl2_vtext" type="text" label="Bottom 7-12 vertical text" description="Here you can set text visible on right side of position Bottom 7-12" default="" />


Cheers ;)
User avatar
Platinum Boarder

GK User
Fri Sep 17, 2010 11:14 pm
your right again master... :)
User avatar
Platinum Boarder

GK User
Wed Sep 22, 2010 2:28 pm
in my file, I have this:


<param name="topsl1_vtext" type="text" label="Top 1-6 vertical text" description="Here you can set text visible on right side of position Top 1-6" default="About" />

<param name="topsl2_vtext" type="text" label="Top 7-12 vertical text" description="Here you can set text visible on right side of position Top 7-12" default="Portfolio" />


etc...


But it says Personal, still. Not About!
User avatar
Senior Boarder

GK User
Wed Sep 22, 2010 2:44 pm
but its ok, I changed the class:

p.vertical{ color:#a9a9a9; position:absolute; left:-25px; top:0; width:20px; height:20px; font: bold 11px Georgia, "Times New Roman", Times, serif; text-transform:uppercase; writing-mode:tb-rl; -webkit-transform:rotate(90deg); -moz-transform:rotate(90deg); -o-transform: rotate(90deg); white-space:nowrap; text-shadow: 0px 0px 1px #fff;


visibility:hidden; }
User avatar
Senior Boarder


cron