Viewing 3 reply threads
You must be logged in to reply to this topic.
Hello
I have 3 problems on my site: https://alprof.3go.ro/architectural-systems/
1. The languages from (top bar) is not visible in mobile version. It is more than important to be visible.
2. The button menu, in mobile version it is above the logo. It must be separate and visible.
3. First pdf icon it is not in his place. In https://alprof.3go.ro/standart-profiles/ page it is same problem.
Please solve or give me the solution to solve them
Thx
Hello,
1-The top bar by default is not present in the mobile. Due to the small screen. To add it, please add this code into your Specular > General Options > Custom Css box:
@media (max-width: 767px){
.top_nav:not(.top_nav_mobile) {
display: block !important;
}
.top_nav .row-fluid [class*="span"]:first-child {width: 25% !important;}
.top_nav .row-fluid [class*="span"]{width: 70% !important;}
}
2-Add this css:
@media (max-width: 480px){
#logo img {
max-height: 40px !important;
}}
3-Add this:
.list ul {
float: left;
}
Result screenshot: https://ibb.co/TWgxYk3
Best regards!
Dear Maria
thank you very much for your response
but after modification, one part from contact page has been changed
https://alprof.3go.ro/contact/
https://alprof.3go.ro/ro/contact/
please help me again!
thx
Hello,
Please edit this code:
.list ul {
float: left;
}
To this:
.list ul {
float: initial;
}
Let me know.
Best regards!
You must be logged in to reply to this topic.