Can't move images - Joomla! Forum - community, help and support
hi all
i brand new using joomla have simple question...
how reposition image. can resize can't drag want. try work around creating table - left size text right size image surely there must easier way?
also there standard dimension column widths length of web page?
many thanks!
i brand new using joomla have simple question...
how reposition image. can resize can't drag want. try work around creating table - left size text right size image surely there must easier way?
also there standard dimension column widths length of web page?
many thanks!
to position images, there few ways of doing common use 1 of 2 solutions:
1. using editor in joomla align left, right, etc along vertical , horizontal spacing
2. using css position images
the latter (second choice) better gives more flexibility need go google , search css image positioning , styling. there's lot of ways of using css hard me write out here in short quick version. however, give example:
the above aligns (floats) image left , puts margin space around 0px @ top, 15px right, 5px bottom, , 0px left. wrap text around image spacing between , image while image kept left.
as dimensions columns, depend on site can have sizing want. height (length) slight different story in cases don't set height unless site needs have this, otherwise it's based on whatever content have in page. advise against fixed height unless must have this. there no such thing auto heights either (strange know) without using scripts (another thing advise against).
quick note: if not using it, install jce editor has image styling abilities, better default joomla editor. jce one, can of individual styling images there css method lot better , apply style image.
1. using editor in joomla align left, right, etc along vertical , horizontal spacing
2. using css position images
the latter (second choice) better gives more flexibility need go google , search css image positioning , styling. there's lot of ways of using css hard me write out here in short quick version. however, give example:
code: select all
.alignleft {
float: left;
margin:0 15px 5px 0
}
the above aligns (floats) image left , puts margin space around 0px @ top, 15px right, 5px bottom, , 0px left. wrap text around image spacing between , image while image kept left.
as dimensions columns, depend on site can have sizing want. height (length) slight different story in cases don't set height unless site needs have this, otherwise it's based on whatever content have in page. advise against fixed height unless must have this. there no such thing auto heights either (strange know) without using scripts (another thing advise against).
quick note: if not using it, install jce editor has image styling abilities, better default joomla editor. jce one, can of individual styling images there css method lot better , apply style image.
Comments
Post a Comment