Home » Forum
NoNumber!

Joomla! Extensions •
Web Development •
Web Design •

I try to respond within 24 hours (excluding weekends). If I haven't responded by then, feel free to post a reminder or bug me via email.
Welcome, Guest
Please Login or Register.    Lost Password?

how to customize Admin mod_feed ?
(1 viewing) (1) Guest
Go to bottomPage: 12
TOPIC: how to customize Admin mod_feed ?
#7669
how to customize Admin mod_feed ? 4 Months, 3 Weeks ago  
Hello

Sorry to post my question in your forum but you are specialized with Admin stuff so maybe you can help me...

I would like to hide or customize bullet padding displayed in module Admin Feed but don't see how to do... In fact when looking to the code I see this:

<ul class="newsfeed"

...but can't find where is located this newsfeed class in all CSS files of Khepri template or any other files of Joomla..

I have try to modify the code of the module by removing inside file helper.php (located in modules/mod_feed) all stuff related to UL tag...Making like that the UL bullet is always present (can't understand why because I remove the UL code...strange..) but now the padding is really to left side like if is set to 0 pixels (is my goal)...

The problem is for get this result I must modify a core file and is not a good idea...Is probably possible to style this using module class suffix but maybe not... If am not wrong module class suffix permit to style the appearance of a module itself but not appearance of the contain displayed inside...


any idea/suggestions ?

thank
dotcom22
Posts: 18
User OfflineClick here to see the profile of this user
The administrator has disabled public write access.
 
#7673
Re: how to customize Admin mod_feed ? 4 Months, 3 Weeks ago  
You should not change the php files. You can remove the bullets with css styling.

Just google on that and you should find a lot on styling ul lists.
Use Firefox with the Firebug plugin to quickly see how elements get there styles.

If you do not know how css works: let someone else do it for you.
Peter van Westen
Admin
Posts: 4280
User OfflineClick here to see the profile of this user
The administrator has disabled public write access.
Need to contact me directly? Go to my contact page.
If you use any NoNumber! NºNumber!NºNumber! extensions, please post a rating and a review at the Joomla! Extensions Directory.
Are you happy with the support? Please consider buying a License Code to help me to continue development and support.
 
#7678
Re: how to customize Admin mod_feed ? 4 Months, 3 Weeks ago  
you point me in the right direction...many thank...Sometime I go wrong when in fact is very easy...

The solution is:

.newsfeed {

list-style-type:none;
padding-left: 0px;

}

Cheers
dotcom22
Posts: 18
User OfflineClick here to see the profile of this user
The administrator has disabled public write access.
 
#7681
Re: how to customize Admin mod_feed ? 4 Months, 3 Weeks ago  
Make sure you check it in Firefoz AND IE. One uses padding and the other margin for bullets.
Peter van Westen
Admin
Posts: 4280
User OfflineClick here to see the profile of this user
The administrator has disabled public write access.
Need to contact me directly? Go to my contact page.
If you use any NoNumber! NºNumber!NºNumber! extensions, please post a rating and a review at the Joomla! Extensions Directory.
Are you happy with the support? Please consider buying a License Code to help me to continue development and support.
 
#7684
Re: how to customize Admin mod_feed ? 4 Months, 3 Weeks ago  
Damn...you right!! Many thank for tips...I have only check with FF and don't thinking IE use margin instead padding...

So now my styling is like I want...great...I have change the code and now it look like this:

ul.adminfeed {
list-style-type:none;
padding-left: 0px;
margin-left: 0px;
}

I just need to Add a suffix "adminfeed" in my module for be able to customize this one only (in fact I have 2 Feed module inside Admin)..

Right now I have another issue but don't know if is a CSS problem or if is a Feed limitation. In fact my article (created in a remote site) is like any article with some simple style like text color for some word and center alignment for some element. The problem is in my Feed display all this styling is not displayed...only some text in Bold are correct..All other element like alignment and color don't reflect the original article..

Do you know why ?

I have try to style also the module (and not only the UL) but don't know in fact what code I must insert...I don't want style in a specific manner the contain of module, I would like just display the Feed with same display of article...Is possible or a Feed is only displayed in simple text format with some basic style like Bold ?

thank
dotcom22
Posts: 18
User OfflineClick here to see the profile of this user
The administrator has disabled public write access.
 
#7687
Re: how to customize Admin mod_feed ? 4 Months, 3 Weeks ago  
This is getting into a simple How to use CSS topic, which is a bit beyond my support.

As said: Use Firefox with the Firebug plugin to quickly see how elements get there styles.

You can also look into your websites html output to see if there are html elements within the feed text that you can style separately (like divs/spans with classes).
Peter van Westen
Admin
Posts: 4280
User OfflineClick here to see the profile of this user
The administrator has disabled public write access.
Need to contact me directly? Go to my contact page.
If you use any NoNumber! NºNumber!NºNumber! extensions, please post a rating and a review at the Joomla! Extensions Directory.
Are you happy with the support? Please consider buying a License Code to help me to continue development and support.
 
Go to topPage: 12
Joomla Open Source Training