How to add banner size 300*250 on background?
Advanced and professional portal news Joomla template with community features and various content display layouts.
Hello i would like put a banner 300x250 on background, in the left or in the right.
How do?
Uploaded with
ImageShack.usThank you very much!
Bye
-
- Fresh Boarder
Hi,
You can add two new module postions in layouts/default.php . Then add css rules for them:
- Code: Select all
.left,.right {
position:absolute;
}
.left {
left:0;
}
.right: {
right:0;
}
if you increase this value you will move modules from corners.
Here you have instructions how add module positions
https://www.gavick.com/documentation/jo ... -position/
-