Forum Replies Created
-
AuthorPosts
-
April 9, 2020 at 5:25 pm in reply to: After upgrading Enfold to current version css to hide layersliders breaks #1202411
hi Rikard,
Thanks that worked. Oddly after changing just the homepage sliders to the new convention of 1 and 2 in the css all the other ones worked again with the original numbers from the shortcode in the css. I changed them all to the new convention of course as it is correct. Thanks for clarifying how that works. You guys are the best.
Tony
April 8, 2020 at 4:41 pm in reply to: After upgrading Enfold to current version css to hide layersliders breaks #1201949Hi Rickard,
Yes that works great, but I don’t understand how to find the appropriate number for the other sliders?
When I look for the slider ID the numbers for these two for instance are 151 and 145, not 1 and 2. I was using the ID that is given for the shortcode before which had been working.
Also the correct convention now is layer_slider_1 not layerslider_1. correct?
Thanks so much for swift reply.
Tony
March 23, 2020 at 6:17 am in reply to: Make text on blog page flush left as it does in the individual posts. #1195362That worked fine, thank you.
March 22, 2020 at 11:08 pm in reply to: Make text on blog page flush left as it does in the individual posts. #1195314Yeah I get that the posts are set to flush left, that’s just what I want. I want the excerpts on the main blog page to flush left as well not be justified, however given this page is dynamically created and pulls in the posts up to the read more break there’s no way to code on page to flush left. What css will make the actual blog page have flush left text. I can’t figure out what to target with css to make that happen. It look okay on the desktop but on the mobile view the justified text isn’t pretty.
THanks,
TonyMarch 22, 2020 at 1:50 am in reply to: Layerslider text overflowing box in mobile version portrait view. #1195169Ah-ha! The display font itself was causing the anomaly, how odd with all other fonts no issue. Lesson learned I guess. Close this thread. Keep safe there guys.
March 21, 2020 at 8:15 pm in reply to: Layerslider text overflowing box in mobile version portrait view. #1195135Been playing with it, it definitely is allowing the same number of lines depth wise on the portrait and landscape view on mobile, problem being it breaks longer on the portrait view and runs out of the box.
So awesome, thanks so much.
As always you guy exceed expectations. Bu then that’s why I’m using Enfold for all new clients anymore.
Case closed.
Look for instance at portfolio page or any of the blog posts.
Hi Ismael,
Thanks for the sticky menu, but the issue happens again on pages without a color section up top the headline moves up behind the menu. See here:
https://specinv.com/wp-content/uploads/2020/03/IMG_1533.png
I had it to this point before but I am reticent to fix the issue by adding space above these sections as I don’t know why it’s happening.
Thanks,
Tony
I’ve rest the login for you, please let me know if it works.
HI again,
This site has been quite an adventure. Some of the issues where from the server side at Hostgator apparently. I deleted the site for a while and we saw odd things on default, fresh installation of wordpress running the default theme. That seems to be rectified now.
Anyway where we stand now is the site is functioning mostly correctly, however I need the menu on the mobile version to be translucent like it is on the desktop version and sticky, then when you scroll up it becomes more white but still slightly translucent as you can see on the desktop version. Adding the sticky menu css I find online for the mobile version now has no effect at present, I wonder if it conflicts with the other code somehow? Right now when the mobile version scrolls up the menu is switching to the white, but in both the initial phase and the scrolled up phase it is not translucent, and as I mentioned it isn’t sticking.
Here is the css in place which references the menus on the site:
/* top menu bar transparency*/
#top .av_header_transparency {
background: rgba(24, 24, 24, 0.32) !important;
}@media only screen and (max-width:767px){
#top .av_header_glassy.av_header_transparency .header_bg {
background-color: transparent;
opacity: 1;
}
#top #wrap_all .header_color.av_header_transparency {
color: #fff;
}
#top .av_header_transparency {
background: rgba(24, 24, 24, 0.32) !important;
}
#top #wrap_all .header_color div .av-hamburger-inner,
#top #wrap_all .header_color div .av-hamburger-inner::before,
#top #wrap_all .header_color div .av-hamburger-inner::after {
background: #7c6853;
}
#top .av_header_transparency .header_color div .av-hamburger-inner,
#top .av_header_transparency .header_color div .av-hamburger-inner::before,
#top .av_header_transparency .header_color div .av-hamburger-inner::after {
background: #ffffff;
}}
/* smaller menu mobile*/
@media only screen and (max-width: 767px){
.responsive .logo img {
max-width:20%!important;
}
.responsive #header_main .container {
height:79px!important;
}
}I’ve reset the user login for you below.
Thanks so much, this one has me chasing my tail.
Tony
Ismael,
I saw that was a cut and paste error I think, with the closing bracket on the sticky menu css this still happened on other pages without a color section up top, the page headline is going up behind the page title:
https://specinv.com/wp-content/uploads/2020/03/Screen-Shot-2020-03-03-at-7.41.53-PM.png
Oy. Sorry, still have an issue after all. Ok I realize the css I deleted that stopped the overlap from happening was this:
/* sticky menu mobile*/
@media only screen and (max-width:767px) {
.responsive #top #wrap_all #header {
position: fixed !important;
}
.responsive #top #main {
padding-top: 0px !important;
}
#header_meta {
display: none;
}But I do need the mobile version menu to be sticky. If I put that back the malfunction reappears.
See here:
https://sicyber.com/newsite/wp-content/uploads/2020/02/IMG_1527.pngI have removed that for now, is there better css to make the mobile menu sticky?
OK tinkered much more. Removing all of my old css one a a time and replacing them and I figured out the issue with pages having the headlines shift up.
Using your code:
@media only screen and (max-width:767px){
#top .av_header_glassy.av_header_transparency .header_bg {
background-color: transparent;
opacity: 1;
}
#top #wrap_all .header_color.av_header_transparency {
color: #fff;
}
#top .av_header_transparency {
background: rgba(24, 24, 24, 0) !important;
}
#top #wrap_all .header_color div .av-hamburger-inner,
#top #wrap_all .header_color div .av-hamburger-inner::before,
#top #wrap_all .header_color div .av-hamburger-inner::after {
background: #7c6853;
}
#top .av_header_transparency .header_color div .av-hamburger-inner,
#top .av_header_transparency .header_color div .av-hamburger-inner::before,
#top .av_header_transparency .header_color div .av-hamburger-inner::after {
background: #ffffff;
}
}Worked great though except the header in mobile view was solid black, so I changed this to match the desktop:
background: rgba(24, 24, 24, .32) !important;
This to match the translucent on the desktop version, but the mobile header stayed solid black so I added this prior to the other css:
@media only screen and (max-width: 767px) {
#top #wrap_all .av_header_transparency {
background: transparent;
position: absolute!important;
}}Now it all works, however…
I’m thinking it might be best practice to combine these into one increment of css.
On the other hand it it ain’t broken don’t fix might prevail here.
What are your thoughts?
Thanks so much once again.
Tony
Nice. That code is amazing and keeps the nice effect we wanted.
I still have s small issue, on pages without the color section up top the headline is shifted up behind the top menu bar:
An example of this as a screen grab:
https://sicyber.com/newsite/wp-content/uploads/2020/02/Screen-Shot-2020-02-28-at-3.07.49-PM.png
This screenshot is off the desktop browser made very narrow, but the same thing happens on the mobile device.
By the way is there a way to have the social icons appear up top on the mobile version as they do in the screen grab? They disappear on the actual mobile view.
Thanks so much, you guys are awesome.
Kept trying to resolve, I replaced the mobile sticky menu code with this:
/* Sticky header on mobile */
@media only screen and (max-width: 767px) {
.responsive #top #main {
/* Margin top value should be equal to header height*/
margin-top: 180px;
}
.responsive #top #wrap_all #header {
position: fixed;
}
}But the translucency on the home page mobile version was lost, which is what I’m trying to maintain.
See here:
https://sicyber.com/newsite/wp-content/uploads/2020/02/top.jpg
February 4, 2020 at 11:02 pm in reply to: How to style full width submenu menu icon in mobile view #1181575Nope all good, the solution is for the sticky sub menu head on the desktop and the regular mobile menu. Thanks so much.
February 4, 2020 at 8:33 pm in reply to: How to style full width submenu menu icon in mobile view #1181514Hey Ishmael,
I’m thinking the solution if the mobile version can’t be sticky is to just hide the full width submenu on the mobile version and enable the regular menu which I already hid on the desktop version. Figured out the css to do this, thanks for your help.
Tony
January 11, 2020 at 6:46 pm in reply to: Trying to make a menu item which goes to an anchor work work on mobile. #1172428Never mind, I thought of a way to make both versions in the same color section. I think what I was asking was impossible anyway.
Awesome! Thanks so much. Problem solved.
Hi sorry not sure why that didn’t work.
login: https://sicyber.com/newsite/wp-admin
user: temp
psd: daqteg-teshIm-4myxfyDecember 18, 2019 at 6:42 pm in reply to: social media icon in header not imaging after last WordPress update #1167439No, all good Jordan, did the fix on all my client’s enfold sites. Curiously one was not effected. Thanks.
December 18, 2019 at 5:26 am in reply to: social media icon in header not imaging after last WordPress update #1167090Thanks Jordan,
Glad I asked was down on several sites and I hadn’t noticed. I gather that’ll be a built in bug fix in the next update to Enfold itself.
Tony
Yes I know that’s where I was trying to change it. Tried for days, reinstalled everything, went to different browser on different computers cleared all caches, turned off all plugins, etc, etc.. Nothing. Tonight, oddly it works as expected as on all my other Enfold installations. Something got stuck but God only knows what. Well one of those things you don’t try to figure out as it’s working again. Thanks for the input.
Oh sorry that was just from the last time I typed it back in after trying to change the width. It doesn’t change width with the px there.
October 26, 2019 at 5:11 pm in reply to: New featured image in portfolio grid is deeper than the older ones #1151377Thanks Mike, that worked like a charm.
Tony
October 24, 2019 at 6:48 pm in reply to: New featured image in portfolio grid is deeper than the older ones #1150972Client breathing down my neck, hopefully you can revisit this soon? Much appreciated. Tony
Working fine now, feel free too close. Thanks.
Right you are. I forgot I built out the new version of her site on her server which had no ssl certificate then migrated it. While it’s in place as https now the anchor links needed a update.
Thanks so much!
October 22, 2019 at 11:35 pm in reply to: New featured image in portfolio grid is deeper than the older ones #1150333Sure, the last one here is a new one. If I use exactly the same size fatter image as before it comes out deeper, if I substitute a preexisting one from another portfolio post as a featured image it lines up. Has something to do with how the thumbnails are be generated by the theme and/or WP I imagine?
https://www.brookwood-construction.com/wp-content/uploads/2019/10/problem.jpg
-
AuthorPosts