How to reduce space between text line of pricing table mod.

Rate this topic: Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.
GK User
Mon Jun 17, 2013 4:18 pm
Reply with quote
Report this post
Hello,

How can I reduce space between line of pricing table module.
http://demo.gavick.com/joomla25/creativ ... rice-table

Thanks in advance.

Regards
User avatar
Fresh Boarder

GK User
Mon Jun 17, 2013 4:32 pm
Reply with quote
Report this post
Please use following css code in css/override.css located in template folder and enable css override option in template settings > advanced settings > css override.

Code: Select all
.gkPriceTable dd.gkPrice { margin-top: -10px; }


See you around...
User avatar
Platinum Boarder

GK User
Mon Jun 17, 2013 5:01 pm
Reply with quote
Report this post
Enabled css override and updated override.css accordingly. But seems not working.
Please advise.

Regards
User avatar
Fresh Boarder

GK User
Mon Jun 17, 2013 5:05 pm
Reply with quote
Report this post
Firstly just to be clear you want Price going upwards closing space towards top, is that correct? If not please show on a screenshot which space you are referring to.

Just add important tag to it so it doesn't get override by another css.

Code: Select all
.gkPriceTable dd.gkPrice { margin-top: -10px!important; }
User avatar
Platinum Boarder

GK User
Mon Jun 17, 2013 5:12 pm
Reply with quote
Report this post
I mean reducing space between all lines of pricing table module.
User avatar
Fresh Boarder

GK User
Mon Jun 17, 2013 5:29 pm
Reply with quote
Report this post
If you want following text to close up in height to each other use below css to remove padding, and use previous code for the price value.

For following text in each table.
Code: Select all
    Access to all themes
    Regular theme updates
    Email / Phone Support
    Use your own domain

Code: Select all
.gkPriceTable dd {padding: 0;}


For price value top and bottom spaces.

Code: Select all
.gkPriceTable dd.gkPrice { margin-top: -10px!important; margin-bottom: -10px!important;}


If this is not what you are asking please this time post a screenshot as I cannot guess which line you are referring to.

See you around...
User avatar
Platinum Boarder


cron