By Bruno Alecrim on Thursday, 03 September 2015
Posted in Technical Issues
Replies 3
Likes 0
Views 764
Votes 0
Hi There, I need to make some small adjustments to the Layout structure of EasyDiscuss and EasyBlog, so Instead of making a lot of requests here and fill the forum with my issues, I decide to do it by my self, so I am using firebug to find witch classes I need to edit, but I still need one litle help to find the right css file I need to edit. In the attached file I have more details about this.

How Can I find the right CSS file to edit?

With Best Regards
Bruno Alecrim
Hey there,

I've checked in your screenshot, it seems like you have using this plugin -> plg_scriptmerge , perhaps you can temporary disable this plugin first then clear your Joomla cache.

After that refresh on your page again, it should show correct path again from inspect element part.

By the way, I would like to suggest you add your custom css code in your current template css file, it would be best for your future update.
·
Thursday, 03 September 2015 22:49
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Arlex, thanks for your fast reply, I will do what you suggest me to do, but I am in Doubt about css override.

If I insert any class with different attributes there in my template.css file it will override the same attributes in other css files?

With best regards
Bruno Alecrim
·
Thursday, 03 September 2015 23:58
·
0 Likes
·
0 Votes
·
0 Comments
·
You're welcome.

It depends what class/attribute you insert, example :
div#discuss-wrapper .discuss-item .discuss-item-left + .discuss-item-right {
position: relative;
margin-left: 133px;
border-left: 1px solid #dfdfdf;
}


If you would like to override the margin-left using the same class/attribute, so you have to use !important to override back the original css.

div#discuss-wrapper .discuss-item .discuss-item-left + .discuss-item-right {
margin-left: 206px !important;
}
·
Friday, 04 September 2015 01:24
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post