wdpbeach
Forum Replies Created
-
So I just have to eyeball my layouts then, that is what your silence is saying … gee thanks!
Anyone home? Or do you not address compatibility issues with the number one slider in the world? Perhaps its time for me to find a new theme after 10 years of using Sydney.
Just checking back about this????
OK, you can pick any location on the site that uses an H tag title.
However I do have one set of screenshots so you can know exactly what is going on.Again its an alignment discrepancy. So if in an SR module and I want spacing to be about 30px, then in the SR module I have to create a 150px space for it to align right on front end.
Therefore I have to in the SR module eyeball an estimate so that it ends up correct on the front end. The screen shots should make this very clear and again you can go to most any section on the site that uses any H tag and its the same issue, and you could do this on any one of about 10 of my last sites I have built … that’s how long I’ve been dealing with this.
For this example see screenshots from Homepage 3rd section down from header. Thank you!
Front End View showing only about a 30 px spacing
- This reply was modified 3 years, 5 months ago by wdpbeach.
And it makes the main navi disappear as well … PLEASE HELP!
OH man I just discovered that that method is not a good work around as it renders the themes footer widget to not show up on the page. This template option of course disengages all sydney theme defaults but it does that with the footer too? Oh boy please help to resolve this conflict as I said its been like this for at least a year and I just got sick of the extra work it takes to align H tag titles.
OK so this fixed it but this kind of disappoints me because I have to clean up my CSS and find where the useless CSS is.
.row>#primary>#main .content-inner {
background-color: rgba(255, 255, 255, 1);
padding: 15px !important;
}That seems to handle all the post and cat pages.
So I guess unless you have anything to add Im good.Of course …. now it had done it site wide before but now its just the Articles Page and Post pages. I left it broken as you have seen what it should look like by now. So now you can see the exact issue. It must be on author pages and category pages too.
Forum: Themes and Templates
In reply to: [Sydney] Slider Revolution Overflows and Z-IndexThanks for that!! But I believe that would be for regular WP Editor DEV. I use Slider Revolution as my CMS, no Gutt = very good performance. But that CSS, would not work for this because all the content is in SR. So the only thing that exists in that target are short codes. Only my blog post section is DEVed like that so it would have been something I could do there if needed.
Here is the solution I was able to workout now consolidated correctly.
The issue had been on mobile because overflow visible is set to all viewports/globally, so my thought was then eliminate the overflow using @medias while keeping it for 778px and above. Unless someone thinks there be a better way …@media only screen and (max-width: 777px) { #slide-top_forcefullwidth, #slide-top_1_forcefullwidth, #slide-top_2_forcefullwidth, #slide-top_3_forcefullwidth, #slide-top_4_forcefullwidth, #slide-top_5_forcefullwidth, #slide-top_6_forcefullwidth, #slide-top_7_forcefullwidth { overflow: hidden !important; } } @media only screen and (min-width: 778px) { #slide-top_forcefullwidth, #slide-top_1_forcefullwidth, #slide-top_2_forcefullwidth, #slide-top_3_forcefullwidth, #slide-top_4_forcefullwidth, #slide-top_5_forcefullwidth, #slide-top_6_forcefullwidth, #slide-top_7_forcefullwidth { z-index: 2 !important; } }Forum: Themes and Templates
In reply to: [Sydney] Slider Revolution Overflows and Z-IndexActually I might be fine now unless you guys think there’s a better way. Here’s what I deved, all that is needed is that z tag and to toggle SR’s force overflow, then shut it down with @medias so that it does not cause the mobile overflow issue.
Thoughts?
@media only screen and (max-width: 777px) { #slide-top_forcefullwidth { overflow: hidden !important; } #slide-top_1_forcefullwidth { overflow: hidden !important; } #slide-top_2_forcefullwidth { overflow: hidden !important; } #slide-top_3_forcefullwidth { overflow: hidden !important; } #slide-top_4_forcefullwidth { overflow: hidden !important; } #slide-top_5_forcefullwidth { overflow: hidden !important; } #slide-top_6_forcefullwidth { overflow: hidden !important; } #slide-top_7_forcefullwidth { overflow: hidden !important; } } @media only screen and (min-width: 778px) { #slide-top_forcefullwidth { z-index: 2 !important; } #slide-top_1_forcefullwidth { z-index: 2 !important; } #slide-top_2_forcefullwidth { z-index: 2 !important; } #slide-top_3_forcefullwidth { z-index: 2 !important; } #slide-top_4_forcefullwidth { z-index: 2 !important; } #slide-top_5_forcefullwidth { z-index: 2 !important; } #slide-top_6_forcefullwidth { z-index: 2 !important; } #slide-top_7_forcefullwidth { z-index: 2 !important; } }