0
我想在類別設置爲博客時覆蓋默認的img標籤樣式。在Joomla中更改默認的img樣式
我已經改變了HTML編輯器,並嘗試了很多CMS內的東西,但沒有任何東西讓我刪除或更改添加的樣式屬性。這是怎麼弄出來:
<img src="picture.jpg" alt="alt text" width="100" height="123" style=" float:left; margin: 3px; border: 1px solid #cccccc;"/>
我需要破解出樣式的一部分,只是將其刪除所有這樣我就可以使用樣式表樣式。
我發現這個jQuery方法:changing the img src with jquery
<script>
$('.items-leading img').attr('style',function(i,e){
return e.replace("float:left; margin: 3px; border: 1px solid #cccccc;","");
});
</script>
並將其添加到該標籤的頂部。但是,這是行不通的;(
請幫
不能很好地理解,更具體PLZ,如果可能的話,還要告訴joomla版本。 – 2012-04-09 12:33:29