Article style using CSS - Joomla! Forum - community, help and support
hello
i'm new joomla , learning on localhost.
i'm trying use html , css create article contain number of images on background.
i'm using article manager on backside , html option in article editor.
but i'm not able change article's background.
the usual template background used , code wrote on editor deleted.
any advices?
i'm new joomla , learning on localhost.
i'm trying use html , css create article contain number of images on background.
i'm using article manager on backside , html option in article editor.
but i'm not able change article's background.
the usual template background used , code wrote on editor deleted.
any advices?
hi,
please use id or class in backend editor
example
if have crate 1 article in backend html editor.please use id aor class
<div id="articlecontent">
article article aricle /* content of article */
</div>
and save article.
and use id in template.css file , give background article
div#articlecontent{
background:url('../images/flower.jpg') ; /* give imagepath*/(or)
background-color:#000000; /* give background color */
}
thanks
please use id or class in backend editor
example
if have crate 1 article in backend html editor.please use id aor class
<div id="articlecontent">
article article aricle /* content of article */
</div>
and save article.
and use id in template.css file , give background article
div#articlecontent{
background:url('../images/flower.jpg') ; /* give imagepath*/(or)
background-color:#000000; /* give background color */
}
thanks
Comments
Post a Comment