Hi
On Grafik I would like to have the vertical menu over the header and followed the tutorial “Creating a new module position in the header area of your template”. It’s there now. I moved the menu Joomla51 to the new position. Question: what code shall I use to reproduce the style we have in the demo?
thanks
- wallis
- Commercial Templates
- Wednesday, 10 September 2014
- Subscribe via email
Hello
Would you have a URL to an example of your vertical menu? Also a URL to an example of the menu you wish it styled similar to?
Ciarán
Would you have a URL to an example of your vertical menu? Also a URL to an example of the menu you wish it styled similar to?
Ciarán
- more than a month ago
- Commercial Templates
- # 1
Thank you
To better style your #newmodule menu items try adding the following to the Custom CSS field of your templates parameters (edit to taste)..
Ciarán
To better style your #newmodule menu items try adding the following to the Custom CSS field of your templates parameters (edit to taste)..
#newmodule ul {
padding-top: 5px;
}
#newmodule li {
padding: 13px;
}
#newmodule .menu li [class^="fa-"]:before,
#newmodule .menu li [class*=" fa-"]:before {
top: 0;
}
Ciarán
- more than a month ago
- Commercial Templates
- # 3
Hi Ciarán
Now I see the mechanism and develop from there.
Your help is great.
Manny thanks
wallis
Now I see the mechanism and develop from there.
Your help is great.
Manny thanks
wallis
- more than a month ago
- Commercial Templates
- # 4
Here I came again. The new module is OK now, and configured as I want. However it is not responsive. Is it possible for me to make it responsive?
Tanks
wallis
Tanks
wallis
- more than a month ago
- Commercial Templates
- # 5
Hi Wallis
As your module is using absolute positioning your only real option is to hide the menu on smaller screen devices. To do so you can add the following to the Custom CSS field of your templates parameters...
Ciarán
As your module is using absolute positioning your only real option is to hide the menu on smaller screen devices. To do so you can add the following to the Custom CSS field of your templates parameters...
@media only screen and (max-width: 1024px) {
#newmodule {
display: none;
}}
Ciarán
- more than a month ago
- Commercial Templates
- # 6
Hi Ciarán
Thank you. One more question if you don’t mind. Since the absolute positioning was our choice, the question is: can we make it relative and get the new module responsive?
Regards
wallis
Thank you. One more question if you don’t mind. Since the absolute positioning was our choice, the question is: can we make it relative and get the new module responsive?
Regards
wallis
- more than a month ago
- Commercial Templates
- # 7
Hello
Your only responsive option would be to use the module positions provided with the template. So for example your slideshow can be placed in the top-1a module position and your menu in the top-1b position. You can then alter the widths of these positions using the 'Module Widths' feature in the template parameters.
Ciarán
Your only responsive option would be to use the module positions provided with the template. So for example your slideshow can be placed in the top-1a module position and your menu in the top-1b position. You can then alter the widths of these positions using the 'Module Widths' feature in the template parameters.
Ciarán
- more than a month ago
- Commercial Templates
- # 8
- Page :
- 1
There are no replies made for this post yet.
Be one of the first to reply to this post!
Be one of the first to reply to this post!
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here. Register Here »