Hello,
it is the “small fixed header”.
I have added a wider image (without changing the height) and it seems to work correctly on desktop and mobile.
What would be the code with the Small Fixed Header ?
Thanks
Fred.
Hey!
And please implement adding custom icons without editing code, as you promised here
– already possible since Enfold 2.4.5 see: https://kriesi.at/support/topic/adding-slideshare-to-header-social-icons/#post-200202
Regards,
Peter
Hi!
This is currently not possible – I’m sorry. You would need to create a new shortcode based on the existing iconlist shortcode and then add some new options to your custom iconbox shortcode which helps you to change the headline type. You can suggest the feature here: https://kriesi.at/support/topic/enfold-feature-requests/ and if more users request it we’ll look into it. If you’re in a hurry please hire a freelancer wo can create the custom shortcode for you. I guess it can be done with 1 – 1,5 hours of work (including testing, custom css code, etc.).
Regards,
Peter
Thank you for your response.
That helped me, but like you said, it does some weird effect. Just that the tab open the right way, but just close itself on mouse out.
I’d like it to stay open and to close only if mouse goes over another tab heading.
I’ve got another topic here : https://kriesi.at/support/topic/accordion-open-on-hover/ I created it after to separate my questions.
For the slider, i was right, but the shortcodes.js wasn’t updating itself because of the version called on functions.php.
I think this topic can be close and if you got the answer or even a clue for the accordion, you get go to the other topic.
And thank you again !
Hi akamaxbuz!
I checked the website on desktop and the width of the container is 910px. Please remove browser cache then reload the page a few times.
Cheers!
Ismael
Hi!
Add this on Quick CSS or custom.css:
.template-blog .post .entry-content-wrapper {
overflow: visible;
}
Or you can use this:
#top .template-blog .post .entry-content-wrapper .iconbox_top {
margin-left: 1px;
}
Regards,
Ismael
Hey Bogusz!
Afaik you can set a static prefix to your permalinks: http://wordpress.org/support/topic/add-blog-to-url-for-single-posts but this change may effect other post types (including portfolio entries) too.
Regards,
Peter
I will try another way – thanks for your help. Topic can be closed ;)
Hey!
I don’t see the changes here: http://basisberlin.com/dummy/
Please remove this line of codes:
.header_scrolled, .logo, .logo a, .logo a img, #header_main .container {
min-height: 70px !important;
}
#top .header-scrolled .main_menu {
margin-top: 15px;
}
This css modification is enough to give you a larger header with a higher header size when you scroll the page:
/*default header: main logo and main menu height. increase max value if you want to use a bigger logo*/
#header_main .container, .main_menu ul:first-child > li a{ height:156px; line-height: 156px; }
.logo, .logo a, .logo a img {
max-width: 340px !important;
}
Cheers!
Ismael
Once again thank you everyone for all the great suggestions! Also a reminder we occasionally go threw and prune non-feature requests or off topic comments just so its easier to keep track of all the features requests :)
If you have any questions or support requests make a new topic in the Enfold forum directly.
Thanks,
Devin
Hi!
You can actually use the Contact Form 7 plugin instead of the default Enfold Contact Form. You can request the feature here: https://kriesi.at/support/topic/enfold-feature-requests/
Regards,
Ismael
Hey!
You can use this:
#top .alternate_color.title_container .main-title a {
text-transform: lowercase !important;
}
Cheers!
Ismael
Hello, I added a social icon as suggested here https://kriesi.at/support/topic/adding-custom-social-icons/
And on some pages, the icon (“B”) does appear: http://www.skoroprazdnik.ru http://www.skoroprazdnik.ru/контакты/
and on some, it doesn’t: http://www.skoroprazdnik.ru/ведущий-цены/ http://www.skoroprazdnik.ru/сценарии-корпоратива/
(copy and paste into browser the whole URL with Cyrillic letters, otherwise I’ll get to skoroprazdnik.ru. Or navigate through top menu, 1st, 4th, 5th elements are with the button, 2d and 3d are without)
And please implement adding custom icons without editing code, as you promised here https://kriesi.at/support/topic/adding-custom-social-icons/
Hi!
Please try to use this for desktop view:
@media only screen and (min-width: 1024px) {
#mycolorsection1 {
height: 1000px;
background-size: 100%;
}
}
Adjust the values as you please.
Cheers!
Ismael
Hey!
Please try Dude’s fix on this thread.
Cheers!
Ismael
Hi
Ok thanks for your reply. Do you think you will have a fix in the next release?
Thnks
This reply has been marked as private.
I know CSS fairly well, but I can not change the desktop page size from 1030px to 910px. What do you suggest?
My dev site is http://www.kennethbsmith.com/clients/abww/
Below is what I have now in the custom.css
Thanks
Ken
Desktop Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the desktop view of your site */
@media only screen and (min-width: 768px) {
/* Add your Desktop Styles here */
.container_wrap .container {
clear: both;
margin: 0 auto;
padding: 0;
position: relative;
width: 910px;
}
.responsive .container .tweive.units {
width: 910px;
}
}
Hi keithcrest!
Please go to Appearance > Editor and open Header.php file and find
$phone = avia_get_option('phone');
$phone_class = !empty($nav) ? "with_nav" : "";
if($phone) echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>";
cut it and paste it right under
if(strpos($headerS,'social_header') !== false && strpos($headerS,'bottom_nav_header') !== false) avia_social_media_icons($social_args);
then add following code to Quick CSS in Enfold theme options under Styling tab
.social_header .phone-info { float: right; margin-top: 20px; }
.social_header .phone-info.with_nav span {
border-left-style: none; }
You can adjust margin-top value to position the height of your text
Cheers!
Yigit
Hey!
If you would like to adjust the height, you should change padding values
#top #s {
padding: 20px 47px 20px 5px; }
you should be changing top and bottom padding values, which are both 20px in this code
Best regards,
Yigit
Hi foreigner!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed
#top .header_color .main_menu .menu ul li>a:hover {
color: red;
}
.header_color .main_menu .menu ul li a:hover {
background-color: orange;
}
Cheers!
Yigit
Hi,
The code works in some aspects. But I unable to change the height. I used this code:
#top #searchform>div {
max-width: 600px !important;
max-height: 400px !important;
}
Any suggestion?
THANKS
Hi!
Can you try setting higher than 1024? You can try 1100
Cheers!
Yigit
Hey CloudChoice!
You can add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed
#top #searchform>div {
max-width: 200px; }
Best regards,
Yigit
Hey davidtaylorwebmedia!
Please see Kriesi’s post here https://kriesi.at/support/topic/kriesi-logo/#post-161892
Regards,
Yigit
Hey!
Can you post the link to your website so we can take a look?
Best regards,
Yigit
Hi everybody
I’ve some problems with the woocommerce login/register form (shortcode: [woocommerce_my_account]). The layout looks horrible :S (have a look to the screen)

Can I sort the register and login form among each other instead side by side? (google translate :-D)
How can I edit the layout of this forms?
If this not is depended of the enfold theme than this topic can be closed xD
Hello please help as said before the logo simply disappears
Huston, we have a problem.
I have install and configurate WP SMTP plugin. It send test email correctly.
But contact form not send emails.
I tried this issue. But it is not work.
What else?