You are a life saviour thank you thank you thank you
Hey!
Please add following code to Quick CSS as well
div .logo { margin-right: -50px; }
@media only screen and (max-width: 480px) {
.logo, .logo a, .logo img {
max-width: 270px!important; }}
Cheers!
Yigit
This reply has been marked as private.
Hi!
I have adjusted left value of logo and it seems to be working fine. Please review your website.
Best regards,
Yigit
This reply has been marked as private.
You only give those one:
/*
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 */
}
/*
Mobile Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
}
@media only screen and (max-width: 767px) and (min-width: 480px) {
}
But it not enough because i with responsive layout large i see 5 points of rupture
thanks
Hey!
Please add following code to Quick CSS as well
div .logo {
float: right;
right: 0!important; }
.logo, .logo a, .logo img { max-width: 440px!important;
width: 440px!important; }
If that does not help, please create a temporary admin login and post it here privately by checking “Set as private reply (Only you and moderators will see the content of this post)” above Submit button
Best regards,
Yigit
Hey!
Please refer to my post here https://kriesi.at/support/topic/change-logo-image-for-scrolled-header/#post-188003 if you would like header to resize when scrolled. If you want it to be fixed, please add following code to Quick CSS in Enfold theme options under Styling tab
#header_main .container, .main_menu ul:first-child > li a, .logo img, .logo a {
height: 200px !important;
line-height: 200px !important;
max-height: none !important;
}
Regards,
Yigit
Hey BadAndyStudios!
Please go to wp-content\themes\enfold\js folder and open Avia.js file and find
var st = win.scrollTop();
if(st < 500)
and change it to
var st = win.scrollTop();
if(st < 100)
Cheers!
Yigit
Ismael, thank you very much!
On further inspections i have found “dudes” code and gave it a shot. It worked, but what was the problem ?
add_filter(‘avf_registered_post_type_array’, ‘avia_remove_bbpress_post_type_options’, 10, 2);
function avia_remove_bbpress_post_type_options($post_type_option, $args)
{
if(!empty($post_type_option))
{
foreach($post_type_option as $key => $post_type)
{
if($post_type == ‘forum’ || $post_type == ‘topic’ || $post_type == ‘reply’)
{
unset($post_type_option[$key]);
}
}
}
return $post_type_option;
}
add_filter(‘avia_masonry_entries_query’, ‘avia_remove_bbpress_post_type_from_query’, 10, 2);
add_filter(‘avia_post_grid_query’, ‘avia_remove_bbpress_post_type_from_query’, 10, 2);
add_filter(‘avia_post_slide_query’, ‘avia_remove_bbpress_post_type_from_query’, 10, 2);
add_filter(‘avia_blog_post_query’, ‘avia_remove_bbpress_post_type_from_query’, 10, 2);
function avia_remove_bbpress_post_type_from_query($query, $params)
{
if(!empty($query[‘post_type’]) && is_array($query[‘post_type’]))
{
foreach($query[‘post_type’] as $key => $post_type)
{
if($post_type == ‘forum’ || $post_type == ‘topic’ || $post_type == ‘reply’)
{
unset($query[‘post_type’][$key]);
}
}
}
return $query;
}
Hello, I am wondering how I can make the scroll to top button appear earlier perhaps when I scroll down approximately like 100-200 px. I feel like it takes a good amount of page scrolling before the button appears.
By the way, this is my first theme I purchased and am learning WordPress. It has been a very user friendly experience and I love it so far. Thank you so much.
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