Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

Where to change css?
(1 viewing) (1) Guest
component
Go to bottomPage: 12
TOPIC: Where to change css?
#49021
Where to change css? 9 Years, 11 Months ago Karma: 0
Hello guys,
I'm having problems with the way quizzes show on my site with the templates I have. I would appreciate your help on this.
I attach a pic for you to see what I try to say.
Thanks in advanced,
R
Last Edit: 2014/04/21 13:48 By panollaureiro.
The administrator has disabled public write access.
 
#49022
Re:Where to change css? 9 Years, 11 Months ago Karma: 746
Hello,

Send a link to a page where we can see the problem.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#49023
Re:Where to change css? 9 Years, 11 Months ago Karma: 0
Just go to

www.languagelearningroom.com/index.php/en/accounts-with-llr

login using the following info:
user: ***
pass: ***

and then go to

www.languagelearningroom.com/index.php/en/my-quiz-results
Last Edit: 2014/04/21 14:16 By admin.
The administrator has disabled public write access.
 
#49024
Re:Where to change css? 9 Years, 11 Months ago Karma: 0
Just go to

www.languagelearningroom.com/index.php/en/accounts-with-llr

login using the following info:
user: ***
pass: ***

and then go to

www.languagelearningroom.com/index.php/en/my-quiz-results
Last Edit: 2014/04/21 14:21 By panollaureiro.
The administrator has disabled public write access.
 
#49025
Re:Where to change css? 9 Years, 11 Months ago Karma: 746
Add the following CSS rules to a site template CSS file and clean browser's cache:

DIV.ari-quiz-container,
DIV.yui-dt {
color: #000;
}

For example to <joomla_directory>/templates/template_for_llr_j25_study_room/css/template.css file.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#49026
Re:Where to change css? 9 Years, 11 Months ago Karma: 0
I will tell you what I did, and please let me know if this solution will not create a problem in the future.

1- I created a new theme following the directions here:

www.ari-soft.com/docs/ariquiz/html/ARI_Quiz_UserGuide.html?Otherreferences2.html

I ended up with something like this in the loader.php file


(defined('_JEXEC') && defined('ARI_FRAMEWORK_LOADED')) or die;

AriKernel::import('Application.ARIQuiz.ThemeLoader');

class AriQuizThemeLoader_Light extends AriQuizThemeLoader
{
function load()
{
parent::load();

$doc = JFactory::getDocument();

$theme = $this->getName();
$themeUri = JURI::root(true) . '/components/com_ariquiz/themes/' . $theme . '/';

$doc->addStyleSheet($themeUri . 'css/buttons.css?v=' . ARIQUIZ_VERSION);

$doc->addStyleSheet(JURI::root(true) . '/components/com_ariquiz/themes/' . $theme . '/css/overrides.css');
}
}

2- I copied yui.combo.css from /components/com_ariquiz/assets/css and copied it to the new theme's css file and renamed it overrides.css (as you could see above)
3- After this I stated making all the changes to adapt it to my needs.

My question is: Would this change really override what is primarily designed in from /components/com_ariquiz/assets/css, or would it overload the website with some loop code running in the background?
The administrator has disabled public write access.
 
Go to topPage: 12