Hello,
Look at this site in IE 8 and 7.
http://spaansen.12switch.nl/
On both versions the content is not centered at the top banner.
Can you help me with that?
Gr. Jeen Kersten
(Email address hidden if logged out)
Hi,
Please try adding following code to Quick CSS in Enfold theme options under Styling
body#top.page-id-2627.content { padding-top: 30px; }
.page-id-2627 div.avia_textblock {margin-left: -30px;}
Regards,
Yigit
Hallo,
For some reason my advanced lay-out editor stopped working. When i use this option there is no box/area to edit the page?
How do i fix this?
Thnx!
Thanks Yirgit.
Sorry, it works in drop down menu mode (but doesn’t align well with the top of the sections–another bug). But in slide out menu mode it doesn’t work: The initial menu selection works, but once you select a menu option and are taken to the linked page section, and then try to reselect a menu option to navigate to another section, the menu doesn’t work–I’m “stranded.” I switched it over to slide out menu mode–Could you please take another look? There appears to be some code conflict somewhere.
Mike
Hi!
I searched the forum but there is no help topic to my specific problem.
I customized the theme enfold normaly but, the contact form does not work! We have tested other forms like as contactForm7 and others and they all worked. I would urgent help if possible because my website already on air. I have good knowledge of programming and i could change the contactform but would like the contactform from the theme. Where can I send the login for you to take a look? Tks!
I am using the layout builder on most of my pages but would like to customize the padding between each element customized to each page. Here is an example page:
http://dev.atlasdie.com/why-atlas/
On this page, I would like to reduce the padding between the slider and the text box at the top. Also I would like to change the padding between the images and text boxes on the rest of the page. Is it possible to get some generic code that I could work with? I do not want these to be site-wide changes.
Thank you!
Hi Andrew
I would try the following, assuming you are using the bottom nav area:
– within Appearance > Menus in your main menu, open the screen options tab at the top of the screen.
– check the option for showing advanced menu properties CSS Classes
– toggle open each menu item and add unique names to each menu item, eg. menu-investment-banking
– save your menu
Then by whichever CSS method you use, something like the following might be a good start. An issue is that the widths will be fixed, and you’ll have to set it for each instance of the forced smaller widths, by duplicating the last declaration block of the code below for each new double-lined list item:
#header_main_alternate.container_wrap,
#header_main_alternate.container_wrap .container,
.menu-main-menu-container,
ul#menu-main-menu {
height: 40px!important;
}
ul#menu-main-menu>li,
ul#menu-main-menu>li>a {
height: 40px!important;
line-height: 40px!important;/*change this line-height to suit the single word nav - smaller number will raise it upward */
}
ul#menu-main-menu>li.menu-travel-management > a {
width: 100px!important;
line-height: 16px!important;
padding-top: 4px!important;
height: 40px!important;
}
cheers
Darryl
Hi,
Please see this topic https://kriesi.at/support/topic/menu-with-logo-above-content
You just need to adjust percentage of right and left for logo and main menu to center them
Regards,
Yigit
Hi,
Please add following code to Quick CSS in Enfold theme options under Styling
.pricing-table>li { border-top-style: none; border-bottom-style: solid!important;
border-bottom-width: 1px; }
Regards,
Yigit
Hi,
You can add something like this on your custom.css or Quick CSS:
#menu-item-3043 a {
background: url('ICON OR IMAGE URL HERE') top left no-repeat;
padding-left: 20px;
display: block;
margin: 0;
padding: 0;
}
Regards,
Ismael
Maybe you need to add another subset to the font ( see https://kriesi.at/support/topic/google-fotns-with-extended-latin-subset and https://developers.google.com/fonts/docs/getting_started#Subsets ).
You just need to add the code I posted in the thread to functions.php and replace “Open Sans” with your font name. I’m pretty sure that &subset=latin,latin-ext is what you need for ‘ê’ but if it doesn’t work try another subset.
Hello, just learned how to add wrap box-shadow for responsive layout here https://kriesi.at/support/topic/wrap-box-shadow.
It works perfectly, however I would like to add same shadow for a fixed layout. (Enfold theme options > General settings > Responsive Layout > Fixed Layout)
Can you help?
Hi,
I opened the topic again.
Regards,
Yigit
Actually what you provided seems really nice but a bit too complex. What I was looking for was kind of like http://wordpress.org/support/topic/how-to-a-simple-client-portal
Just sharing with you in case anyone else is facing the same issue.
Anyway big thanks for your support as always :)
Added one pop-up form to the site. Will try the prettyPhoto plugin later. The demo looks very impressive.
Thanks again for the help!
Yes, this is a bug in the latest version. A temp. fix can be found here: https://kriesi.at/support/topic/accordion-since-enfold-21-update-accordion-initial-open-item-is-not-working#post-139180 and we’ll also fix it in the next version for everyone.
1) Yes, open up related-posts.php and replace
$tags = wp_get_post_tags($this_id);
with
$tags = wp_get_object_terms( $post->ID, 'portfolio_entries');
and
$my_query = get_posts(
array(
'tag__in' => $tag_ids,
'post_type' => get_post_type($this_id),
'showposts'=>$postcount, 'ignore_sticky_posts'=>1,
'orderby'=>'rand',
'post__not_in' => array($this_id))
);
with
if(get_post_type($this_id) == 'portfolio'){
$my_query = get_posts(
array(
'tax_query' => array(
array(
'taxonomy' => 'portfolio_entries',
'field' => 'id',
'terms' => $tag_ids
)
),
'post_type' => get_post_type($this_id),
'showposts'=>$postcount, 'ignore_sticky_posts'=>1,
'orderby'=>'rand',
'post__not_in' => array($this_id))
);
}else{
$my_query = get_posts(
array(
'category__in' => $tag_ids,
'showposts'=>$postcount, 'ignore_sticky_posts'=>1,
'orderby'=>'rand',
'post__not_in' => array($this_id))
);
}
2) If you want to limit the post navigation to the current category you can use following code;
add_filter('avia_post_nav_categories', 'use_same_category_filter');
function use_same_category_filter($same_category)
{
$same_category = true;
return $same_category;
}
– insert it at the bottom of functions.php. This code will only work for standard posts and it doesn’t support portfolio entries/post at the moment. This is indeed a bug in the software but not in our “software” or theme code but it’s a wordpress core bug/limitation: https://kriesi.at/support/topic/is-it-possible-to-create-two-completely-seperate-portfolios#post-108132
In Admin, I changed the header menu selection in responsive mode from “slide in menu” to “drop down menu.” The menu worked with this choice, but when choosing the menu item, the section link did not go exactly to the top of the section as it does in non-responsive mode. Mike.
I built this site: http://acontatto.acmecontentlab.com
I linked the menu items to page sections like this post: https://kriesi.at/support/topic/main-menu-custom-links-for-one-page-sites-section-ids-and-anchor-scrolling
I added the CSS below to Admin/style/Quick CSS to “fix” the menu in responsive mode:
@media only screen and (max-width: 767px) {
.responsive #top #header {
position: fixed;
}
}
Everything works well until I use one of the menu items to select a section in responsive mode–the menu doesn’t work (locks up) and there is no way to navigate out. Is there a fix? Thanks, Mike.
Thanks,
This “kind of centers” the big images, but does little for the smaller ones.
But I suppose this topic has dragged for long enough, especially considering that the main idea here was supposed to fix the image sizes, and it did that.
I’ll try some more ideas how to center the images, and perhaps I’ll just open a dedicated thread for that later, if I am unsuccessful in my attempts.
Thanks again!
Hi,
You can use this on your custom.css or Quick CSS:
.header_color .main_menu .menu ul li a {
background: red;
color: white;
}
Hover state:
.header_color .main_menu .menu ul li a:hover {
background-color: blue;
}
#top .header_color .main_menu .menu ul li>a:hover {
color: red;
}
Regards,
Ismael
Hi guys, thanks for your attempts to fix the issue below. It still seems to be an issue and not working properly. I’ve check your demo site on the iPad (especially the one page portfolio home page demo) and it too suffers the same issue with scrolling. Would you please be able to take another look when you can? Many thanks in advance. Here’s the support link below.
https://kriesi.at/support/topic/colour-section-background-attachment-mobile-devices?replies=1&message=update-support-forums-topic-status-error
Hi,
You can use the AddThis plugin. Refer to this link on how to implement the social buttons: https://kriesi.at/support/topic/placing-addthis-social-icons-into-the-header
Regards,
Ismael
Hey,
You can use this on your custom.css or Quick CSS:
#top .widget_nav_menu ul ul li a {
font-weight: bold;
}
.widget_nav_menu a {
display: block;
padding: 4px 0px 5px 0;
text-decoration: none;
font-weight: bold;
}
Regards,
Ismael
Hi Josue,
That change does delete the blue title container and the title “blog” from just the individual blog posts. Thanks.
I have two related follow up questions, though:
1. As noted before, my preference would be not to delete the blue title container on the individual blog posts, but just to either eliminate the tile “blog’ for it, or to change it so something else, show as “blog post” or “individual post”. If this isn’t possible, I can live with deleting the container, but for aesthetic reasons I’d rather be able to keep it if we can eliminate or change the word “blog”, since I think that is not an accurate description of what is on the page (since the page has only one post from the blog, not the entire blog).
2. By making a change directly to the single.php file in the Enfold folder, will that change be wiped out when I update the Enfold theme periodically to newer versions? (If so, I assume I just take care to redo the change to this file each time.)
Thanks again for your help.
John