How to find the correct module to modify.

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
Hi Folks,

I'm hoping someone can help me better understand a few things about modifying my nopCommerce 1.8 install.

For instance: I am customising the css for the "Populare Tags" box and have noticed that there are inline styles hard-coded into the page (style='font-size: 80%',style='font-size: 100%', etc).

The problem I am having is finding the corresponding Module or Page I need to get at to remove the inline styles so that my external CSS declarations work.

So in short.. what is the best way to find which module I should be working on for each page element?

Hope this makes sense.
Thanks
13 years ago
The best way I found was to do a little backwards engineering.

Open the page in a browser
Right click and choose "View Source"
Look for the section of code that corresponds to the part of the site you want to change
Look for the nearest preceeding <div> tag and note the class or ID
Go back to VS or VWD and do a global search for that class or ID
13 years ago
Thanks steveeb,

Thats what I'm doing now. I was just wondering if there was another way.

Cheers
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.