- Posts: 14
- Thank you received: 0
Editing top row (logo + topmenu)
-
yıldırım
Inactive member - Topic Author
- New Member
Less
More
10 years 4 months ago #41434
by yıldırım
Editing top row (logo + topmenu) was created by yıldırım
Hello,
I am using corporate 3x template with Joomla 3.3.
I want to change the height of top row and add background color to it. The top row has logo and topmenu modules. Would you please help me?
I am using corporate 3x template with Joomla 3.3.
I want to change the height of top row and add background color to it. The top row has logo and topmenu modules. Would you please help me?
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 4 months ago #41437
by ivan.milic
Replied by ivan.milic on topic Editing top row (logo + topmenu)
First in layout editor assign some css class to top row like 'toprow'. You will see field to type in css class in left side of row in layout editor. Then you will be able to target row using that class
.toprow{
min-height : 150px;
background : red;
}
.toprow{
min-height : 150px;
background : red;
}
Please Log in to join the conversation.
-
yıldırım
Inactive member - Topic Author
- New Member
Less
More
- Posts: 14
- Thank you received: 0
10 years 4 months ago #41440
by yıldırım
Replied by yıldırım on topic Editing top row (logo + topmenu)
Thank you for your answer. Is it possible to put social module over menu on the top right edge?
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 4 months ago #41450
by ivan.milic
Replied by ivan.milic on topic Editing top row (logo + topmenu)
You can put it in same position as menu, in module configuration set module class suffix " social_module" (note first char is blank). Then position your module using css, in template_css.css add:
.social_module{
position:absolute;
z-index:99;
margin-top:...
margin-left:...
}
use margin properties to offset module location as needed (they can have negative values like -50px)
.social_module{
position:absolute;
z-index:99;
margin-top:...
margin-left:...
}
use margin properties to offset module location as needed (they can have negative values like -50px)
The following user(s) said Thank You: yıldırım
Please Log in to join the conversation.
Time to create page: 0.159 seconds