NSP Art Nsp Col14 Div - Where in Html?

Amazing responsive, mobile ready VirtueMart e-commerce Joomla template
Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Mon Sep 30, 2013 7:55 pm
Reply with quote
Report this post
I am looking for this div:

<div class="nspArt nspCol4" style="padding:0 14px;">

The module that this piece of html goes to is on the homepage of the template. This is the latest offers module.
User avatar
Senior Boarder

GK User
Mon Sep 30, 2013 8:38 pm
Reply with quote
Report this post
If you are asking where this is generated then it is as follows.

File: modules/mod_news_pro_gk4/tmpl/content.php
Line: 74
Code: Select all
<div class="nspArt nspCol<?php echo $this->config['news_column']; ?>" style="<?php echo $style; ?>">


See you around...
User avatar
Platinum Boarder

GK User
Mon Sep 30, 2013 8:48 pm
Reply with quote
Report this post
normanUK wrote:If you are asking where this is generated then it is as follows.

File: modules/mod_news_pro_gk4/tmpl/content.php
Line: 74
Code: Select all
<div class="nspArt nspCol<?php echo $this->config['news_column']; ?>" style="<?php echo $style; ?>">


See you around...


I found it, but I still can't do exactly what I'd like with it.
The html code I provided to you above is for the headers in the latest offers module. I want to make a custom css change and change the colour of just this text, and no others.
How would I do that with the php given above?
User avatar
Senior Boarder

GK User
Mon Sep 30, 2013 9:03 pm
Reply with quote
Report this post
From our demo site http://demo.gavick.com/joomla25/bikestore/ as an example, are you trying to change text color on product names in this module.
Such as: Zaffiro Pro Slick, Ordu GDi2
User avatar
Platinum Boarder

GK User
Tue Oct 01, 2013 2:25 pm
Reply with quote
Report this post
normanUK wrote:From our demo site http://demo.gavick.com/joomla25/bikestore/ as an example, are you trying to change text color on product names in this module.
Such as: Zaffiro Pro Slick, Ordu GDi2


Yes I am. I am trying to change just those product names and nothing else.
I have edited the css to change those names to white, and it has changed other items besides those in that module to white.

I want to change just those product names in that module.
User avatar
Senior Boarder

GK User
Tue Oct 01, 2013 10:41 pm
Reply with quote
Report this post
Then you don't need to edit the php or html files. Simply use css code in override.css file located inside templates css folder. Then enable css override option in template settings > advanced settings > css override "on".

Add below code in to override.css file and change #000000 to your chosen color.

Code: Select all
.nspArt h4.nspHeader a { color: #000000; }


See you around...
User avatar
Platinum Boarder


cron