Hi all,
Yesterday we managed to migrate our old theme to newspaper.
http://www.musiccorner.gr
Everything looks great but i have 3 small issues.
1. Between the header menu i put a single line which created with the following css code (i found this code from an answer here in forum)
.td-menu-placeholder .td-menu-header {
border-bottom: 2px solid black !important;
border-top: 2px solid black;
border-right: 0px solid black;
border-left: 0px solid black;
Checking the site through a mobile phone (NEXUS 5) i see a black line, in the upper level of the screen. I suppose that this is caused by the CSS????
2. Checking the site through a PC with screen resolution 1152×864, menu is breaking in two lines. I had to reduce the font size in order to fit into one line.
I thought that the responsiveness of the theme could avoid that to happen. Wrong?
3. Scrolling down the first page you wll find a bolock with 5 tabs (different categories).
Those tabs are changing every 5secs but i want to stop the responsiveness for this. Is this possible?
For developing reasons, also keep in mind that enabling Contact form 7 plugin i had the following issues:
Trying to enter o photo into a post through media gallery was not possible. It was tyrying to read the images with no result (blank page). Disabling the Contact form, everything was fine.
Revolution slider could not save a new slide (Ajax error was the message)
Thanks!
S.
Hi,
1. Yes, use the css for those borders like this to only show it in on tablets and desktop screens:
@media (min-width: 768px) {
.td-menu-placeholder .td-menu-header {
border-bottom: 2px solid black !important;
border-top: 2px solid black;
border-right: 0px solid black;
border-left: 0px solid black;
}
}
Or you can use it like this to hide it on mobiles: http://screencast.com/t/XMOsFYY2
@media (max-width: 768px) {
.td-menu-placeholder .td-menu-header {
border-bottom: 0px solid black !important;
border-top: 0px solid black;
}
}
2. Unfortunately that happens, and it’s because of the font being large and if you use many menu items, to fix that you can use smaller font (like you did) or modify the menu items width.
3. That is possible but you will need custom work for that as the same classes are used to make the others elements responsive and setting a fixed width for those would apply to all, you would have to find a way to target just the elements you want and change the css, if you want to do it you can always get a freelancer from sites like: http://studio.envato.com/ if you don’t know how to do it yourself.
Thanks for reporting this issues, we will test this.
Thnaks
