-
AuthorSearch Results
-
April 3, 2017 at 3:59 am #770853
Topic: Edited page not saving correctly.
in forum EnfoldTerryGrow
ParticipantI have a new page that’s failing to save a change to the Sidebar Settings correctly. In particular, I want to change the Sidebar Settings option “Select the desired Page layout” to “No Sidebar”. I change the selected option then click Update and it reverts back to “Default Layout – Set in Enfold Child > Sidebar” when the page is reloaded. I’ve disabled all plugins and updated the theme to the latest version (4.0.5) and tried switching from the child theme to the parent, and none of those things have helped.
I created another copy of the page with identical content and settings, and that page is working, but we can’t just rebuilding pages on the site every time we need to edit something. I had a similar issue last week that I worked around (https://kriesi.at/support/topic/fullwidth-easy-slider-disappears-from-page/ ) but in that case elements were disappearing from the page after an edit.
Are you able to please advise on why the sidebar setting isn’t saving? I’ve provided login details and a link to a test copy of the site.
April 3, 2017 at 2:14 am #770830In reply to: Custom Space between Two Columns
Hello!
I am having the same issue–needing to alter the space in between columns on a couple of my pages. They’re 1/3 columns inside a color section with text blocks inside each.
FYI if it’s helpful in figuring this out, I’m using this CSS to get the color section to span to the edges of the page. (Although I have tried removing this CSS to see if the others will work, and they didn’t)
#fullwidth .container { width: 100% !important; max-width: 100%; padding-left: 10px; padding-right 10px; margin: 0; }I’ve tried the following different CSS blocks from the forum, but none of them has any impact on the space between the columns (this includes me messing with the % values and seeing if it does anything).
.page-id-166 div .av_one_third {
margin-left: 3%;
width: 32.333333%;
}
.home .flex_column.av_one_third {
margin-left: 3%;
width: 32.3333333%;
}div .av_one_third {
margin-left: 6% !important;
width: 29.333333333333332% !important;
}Thanks for your help!
update
I solved it using this css
.av_one_third {
margin-left: 0% !important; margin-right: 0% !important;
width: 100% !important;
}
It’s still lopsided to the left on desktop, though–barely any space on left of 1st column border, vs. maybe 25px to the right of the 3rd column.Let me know what you figure out. I’m gonna keep working on it.
-
This reply was modified 8 years, 11 months ago by
willmfraz.
April 3, 2017 at 1:44 am #770825In reply to: Mobile menu reveal on scroll up
finally it works on desktops.
two things were wrong. i had the wrong headroom.js file and it needs a sticky header. so next thing will be, to get it to work on mobile.
April 3, 2017 at 12:24 am #770795In reply to: Mobile menu reveal on scroll up
i tried install it via the enfold/functions.php as well:
function avia_register_frontend_scripts() { $template_url = get_template_directory_uri(); $child_theme_url = get_stylesheet_directory_uri(); //register js wp_enqueue_script( 'avia-compat', $template_url.'/js/avia-compat.js', array('jquery'), 2, false ); //needs to be loaded at the top to prevent bugs wp_enqueue_script( 'avia-default', $template_url.'/js/avia.js', array('jquery'), 3, true ); wp_enqueue_script( 'avia-shortcodes', $template_url.'/js/shortcodes.js', array('jquery'), 3, true ); wp_enqueue_script( 'avia-popup', $template_url.'/js/aviapopup/jquery.magnific-popup.min.js', array('jquery'), 2, true); wp_enqueue_script( 'headroom', $template_url.'/js/headroom.js', false, NULL, 'all'); wp_enqueue_script( 'custom', $template_url.'/js/custom.js', array('jquery'), 2, true); wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'wp-mediaelement' );-
This reply was modified 8 years, 11 months ago by
thatsmyname.
April 2, 2017 at 10:41 pm #770759Topic: Remove a featured image from a post
in forum EnfoldKMC DC
ParticipantHi guys
I have this post:
How do I prevent the featured image from appearing at the top?
Thanks
April 2, 2017 at 9:56 pm #770749In reply to: Blog Layout issue
Hi,
Ok it’s an easy fix, there is only two posts without a excerpt, the first one (http://royalflush-sport.com/grand-national-weekend/) I went to edit the post & at the top in screen options:

I checked the box “Excerpt” then at the bottom of the page a text field will show called “Excerpt” write in there and save. :)
The second post said it was Member Content so I left it for you :)Best regards,
MikeApril 2, 2017 at 7:12 pm #770710In reply to: Switching to the Child Theme
Hi,
You find this helpful: https://kriesi.at/support/topic/how-to-export-the-template-from-the-enfold-theme/#post-741852Best regards,
MikeApril 2, 2017 at 6:43 pm #770700In reply to: Footer adjustments
Hi,
Try this in your socket:© Copyright 2017 Methodist Welfare Services <div class="push-right"><a href="http://www.fastartup.com">Design by FASTARTUP</a></div>Try this code in the General Styling > Quick CSS field:
.push-right{ position:absolute; right:20px; top:80%; transform:translateY(-50%); } @media only screen and (max-width:767px) { .push-right{ position:relative; right:auto; transform:none; }}Adjust top & transform numbers to suit :)
Best regards,
MikeApril 2, 2017 at 5:38 pm #770680In reply to: Mobile menu reveal on scroll up
Hi,
$template_url.’ is referencing to “…/enfold/”
For your child theme with the folder and file /enfold-child/js/Headroom.js
please try:wp_register_script( 'sw_custom_java', get_stylesheet_directory_uri().'/js/SW_custom_js.js', 'jquery', "1", true); wp_register_script( 'headroom_js', get_stylesheet_directory_uri().'/js/Headroom.js', 'jquery', "1", true); wp_enqueue_script( 'sw_custom_java' ); wp_enqueue_script( 'headroom_js' );More info: https://kriesi.at/support/topic/how-to-add-custom-jquery-to-enfold-theme/#post-311208
Best regards,
MikeApril 2, 2017 at 5:21 pm #770673In reply to: Remove top padding
Hi and thanks!
I tried it, but it didn’t change anything. There is still a black border on the top of the page.
Kind Regards
OlofApril 2, 2017 at 5:17 pm #770670In reply to: Remove top padding
Hey olofnaucler,
Try this code in the General Styling > Quick CSS field:#n2-ss-5-align.n2-ss-align { margin-top: -50px !important; }Best regards,
MikeApril 2, 2017 at 5:14 pm #770668In reply to: Design Errors
Joyce Valenzuela
GuestHi there, thanks for comment, i can take care of technical matters. So do i just add the text Jordan mentioned to that file?
or do I have to do any change in the theme option as this
“Please go to Enfold theme options > General Styling and find Quick CSS field at the bottom – ”if not I would add this text to enfold.css? please confirm and explain exactly so i can do it once
#top .all_colors strong {
background-color: none!important;
}April 2, 2017 at 5:04 pm #770666Topic: Remove top padding
in forum Enfoldolofnaucler
ParticipantHi there,
I need to remove the top padding on a website I’m working on. Iv’e read several questions – and answers – concerning this, and I’ve tried to change the CSS but I just can’t get it right.
I would really appreciat your assistance on the matter.
Kind Regards
OlofApril 2, 2017 at 4:09 pm #770645In reply to: How to not show something only on mobile?
Hey DROR,
It is not showing on mobile or tablet for me, only laptop (1024px) and above, so perhaps you have solved it, but here is some css for up to 770px (tablet) just in case.
Try this code in the General Styling > Quick CSS field:@media only screen and (max-width: 770px) { .pwebcontact.pweb-slidebox.pweb-horizontal.pweb-right .pwebcontact_toggler { display: none !important; }}Best regards,
MikeApril 2, 2017 at 3:41 pm #770639In reply to: Coalition Theme
Barry Kneller
GuestHi Rikard! Thanks for your reply. I am looking to make a portfolio page like the Masonry 3 Column Grid in Enfold but when you click on one of the items a video player will open up and play a video instead of displaying an image. I do not want it to link to another page, I want to put a picture as a thumbnail, name of the video underneath and have the player open right on top of the page similar to what you see in the Coalition theme.
I went thru the Enfold elements page and it is an amazing theme! I am considering both the Coalition and Enfold. I do think Coalition is more appropriate for what I am looking to achieve, but yes Enfold offers wonderful features and is beautiful.
Thanks!
Barry
April 2, 2017 at 1:30 pm #770618In reply to: Mobile menu reveal on scroll up
Hi @talawar,
thanks for your input!
I tried to follow your steps, but it’s not working yet.
I put the CSS into my child themes style.css and modified helper-main-menu.php as you suggested.
Then i am not so sure, if i did the following right. I uploaded Headroom.js to enfold-child/js/ and added your custom JS to a new file. I tried to register both files vie child-themes functions.php ( as suggested here https://kriesi.at/support/topic/custom-js/ ).
enfold-child/functions.php:
wp_register_script( 'sw_custom_java', $template_url.'/js/SW_custom_js.js', 'jquery', "1", true); wp_register_script( 'headroom_js', $template_url.'/js/Headroom.js', 'jquery', "1", true); wp_enqueue_script( 'sw_custom_java' ); wp_enqueue_script( 'headroom_js' );any ideas, what i did wrong?
Thanks!
April 2, 2017 at 12:58 pm #770612Hi,
Thanks for the screenshots. Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio: 1) { .responsive #top #wrap_all .av-flex-cells .no_margin { display: block; margin: 0; height: auto !important; overflow: hidden; padding-left: 8% !important; padding-right: 8% !important; width:100% !important; } }Best regards,
RikardApril 2, 2017 at 11:49 am #770601Topic: Side Menu cuts off sub menu items
in forum Enfoldkevinreddell
ParticipantGoodday, I am using the side menu for my website and i have added submenus. On small screen (Laptop size) they menu items are cut off. I have say 6 menu items but only 3 show – I would like to change it so that the side menu appears from bottom up and not top to bottom.
April 2, 2017 at 11:07 am #770595In reply to: Background image for Blog posts
Hi,
Glad we could help. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
RikardApril 2, 2017 at 10:54 am #770588In reply to: Adding multiple widget areas to the header
Hi,
You should be able to add as many widgets as you want with the code you posted:
add_action( 'ava_main_header', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { dynamic_sidebar( 'header1' ); dynamic_sidebar( 'header2' ); }Just make sure to name them properly under Appearance->Widgets. You will need to change the CSS as well. For the first one you can try something like this:
#header #ajaxsearchprowidget-6 { left: 50%; padding-top: 0; position: absolute; top: 0; transform: translate(-50%); z-index: 999; }Best regards,
RikardApril 2, 2017 at 10:40 am #770585In reply to: Column Heights
Change top header to BLACK (#000000) and change column height that the four buttons under “what we do” are aligned, they are currently staggered, with the 1st and 4th buttons being higher than the 2nd and 3rd…
April 2, 2017 at 10:22 am #770575Hi,
It’s intentional, when using the builder for posts they will act like pages and you will have to add all content to it manually. If you want to add an excerpt then you can select to show that field in the Screen Option on the top right hand side of the screen when you are editing a post.
Best regards,
RikardApril 2, 2017 at 10:14 am #770571Hi,
Ok, thanks for the feedback. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
RikardApril 2, 2017 at 9:56 am #770568In reply to: Hotspot feature for text?
Hi,
No problem, let us know if you should need any further help on the topic or if we can close it.
Best regards,
RikardApril 2, 2017 at 9:55 am #770566In reply to: Media cleaning tool
Hi,
Let us know how you get on with it, or if you should need any further help on the topic.
Best regards,
RikardApril 2, 2017 at 9:48 am #770562In reply to: Ajax Gallery Lightbox Problem on Ipad/Safari
Hi,
just found a solution in another thread:
https://kriesi.at/support/topic/masonry-gallery-images-lightbox/Thanks,
Artiarturro-
This reply was modified 8 years, 11 months ago by
Artiarturro_66.
April 2, 2017 at 9:24 am #770553In reply to: Event Plugin
Hi Rikard!
Would you please let us know your view on topic 2) ?
Thanks
BerndApril 2, 2017 at 8:23 am #770538In reply to: Headline Rotator – break in length
Hi,
Glad we could help. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
RikardApril 2, 2017 at 8:23 am #770537In reply to: No responsive Footer and color section behaviour
Hi Marc,
Great, glad you got it working and thanks for the feedback. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
RikardApril 2, 2017 at 6:12 am #770506In reply to: Support problem
Hi Peter,
Are you not able to log in with your account? If you are then you can go to our support forum, then go to the product topic you want support on. Click the big blue button which reads Can’t find a solution to your problem? Open a new thread on top of the topic section to start a new thread.
Best regards,
Rikard -
This reply was modified 8 years, 11 months ago by
-
AuthorSearch Results
Viewing 30 results - 82,021 through 82,050 (of 142,836 total)
-
Search Results
-
Hi guys
I have this post:
How do I prevent the featured image from appearing at the top?
Thanks
Topic: Remove top padding
Hi there,
I need to remove the top padding on a website I’m working on. Iv’e read several questions – and answers – concerning this, and I’ve tried to change the CSS but I just can’t get it right.
I would really appreciat your assistance on the matter.
Kind Regards
Olof
