Thanks very much Cyberek.
We're getting there as you stated. I will have more clarifications, I am sure, in the future.
However, it is in a format now that allows me to transform the Demo into an actual site. Essentially, consolidating contents in a number of older websites. So, I will spend some time on that.
I am glad I came back to Gavick. The support here has gotten better since I came back. More Moderators, I guess, who really know their stuff.
I have always liked the Gavick template design. But for awhile in 2008, Gavick did not have the "News Magazine" templates that I want.
At the time in 2007, I like the Teline News-Magazine template of Joomlart. So, I have invested so much effort on it. After the second version though, it got so bloated that the latest versions took forever to load the page.
What tipped the balance was when they decided not to upgrade the Teline II version to Joomla 2.5. I would not have minded to move to the latest version of the Teline series, but there were so many features that just do not work. Then, when I ask for support, a number of the questions asked by members were never answered.
I have used some of the Gavick World News Magazine templates but never did get a chance to really move my main sites to it.
With Joomla 3.x around, I decided to make the change. What clinched it also is the "Lifetime Membership". I only use one to two templates. And then, just modify the one I chose.
Cornelio
Cyberek wrote:Padding stuff.
It is exactly as You have mentioned:
- Code: Select all
p {padding: 5px 10px 15px 20px;}
would set top padding to 5px, right to 10px, bottom to 15px and left 20px (it works same with margin, borders and other elements that can be set to any of those 4 directions).
The difference between margin and padding is padding will always sume up (so 2 paragraphs that have top and bottom padding set to 10px will have 20 px space between), and margin overlap each other (suppose paragraph has top margin 10px and bottom 15px, then space will have 15px as they will overlap).
You can simplify this to:
- Code: Select all
p {margin: 10px 20px}
which will set top and bottom margin to 10px, left and right to 20px (same with padding, borders etc)
or even more:
- Code: Select all
p {margin: 10px}
set all to 10px.
If You would like to modify only one side, use:
- Code: Select all
p {margin-top: 10px}
and replace top with right, bottom or left to set specific direction margin (padding, border etc).