We moved to new unified forum!

Please post all new support queries in our New Forum.

T3 Community Discussion & Support

Let's build the best free Joomla template framework, together!
  1. Michael
  2. General Discussion
  3. Saturday, 21 September 2013
  4.  Subscribe via email
Hi to all,

i want to ad the following css command to the position-0.
I try these in the custom.css but it dont take effect.

.position-0
{
text-align: right;
display: inline;
left: 100%;
margin-left: -300px;
position: absolute;
top: 3px;
width: 200px;
height: 20px;
z-index: 101;
}

how can i do that?

regards

Michael
Comment
There are no comments made yet.
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Michael,

One way to do this would be to assign a class to the modules you place in position-0 (you would have to do this to each module individually that you want to pick up your CSS) then in the CSS change what you have:

.position-0
{
text-align: right;
display: inline;
left: 100%;
margin-left: -300px;
position: absolute;
top: 3px;
width: 200px;
height: 20px;
z-index: 101;
}


to use your new class:

.myNewClass
{
text-align: right;
display: inline;
left: 100%;
margin-left: -300px;
position: absolute;
top: 3px;
width: 200px;
height: 20px;
z-index: 101;
}
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 1
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.