Same problem here. I have build my site on a subdomain and migrated it this afternoon to my main domain. After the migration the icons appear as chinese signs in IE11 (in Chrome it seems to be fine). The Arrow to scroll back to the top and the magnifying glass next to the search field aren’t dispayed at all.
I have tried a clean install of the theme by FTP, clearing the cache of IE11 but nothing helps. Any clue what might be the problem or could have gone wrong with the migration of my website?
Regards,
Erik
Hey!
Please try following code
iv.gridfx-item-content { top: 88px!important; }
It seems like you have changed header style so this should work fine.
Regards,
Yigit
This reply has been marked as private.
Hi,
If I check my recently created website on mobile or make my browser really small, the header logo gets cut off by about 80 px (on the end). I’m using the preferred logo dimension width of 340 px.
I’ve tried to use some solutions of former topic titles, but unfortunately it does not work for my website.
Do you have a quick solution?
cheers
This reply has been marked as private.
Hi Josue, not in the blog grid but in the portfolio grid. I can choose until only 4 column, not 5.
But with the code that Nick told me in this post https://kriesi.at/support/topic/portfolio-with-space-between-column/#post-119515, I see 5 columns, but with last update the columns still become 5.
Thanks
I found a previous post that goes into this in detail but the outcome is somewhat an incomplete fix.
https://kriesi.at/support/topic/lightbox-images-on-iphone-or-ipad-dont-resize/
Basically, when I open my thumbnails on iphone, the bottom banner under the lighbox image does not show correctly (see the link above).
The CSS given by the moderator fixes this issue but I dont need a transparent banner here, it should be like the original Enfold demo with a white box and the page numbers and close symbol. I have tested this on the demo and there seems to be no issue here.
Can anyone help, am i missing something from my theme or css?
Thanks
Hey!
I am using Chrome. I see that padding on logo image was removed. There is no padding around it. You should edit your logo image file
Please use following code to remove top border
#header_main { border-top: none!important; }
Cheers!
Yigit
Hi
I am trying to add a large telephone number – maybe with a telephone icon and maybe an email one too – but to the top of the page.
I’ve tried adding it under the header but they are too small.
I found some info online about adding the header file etc but the lines it tells me to find etc are not the same in my header file and I don’t want to mess it up.
Something like this is what I am after: no the logo etc but in terms of putting our main contact details at the top
https://www.borri.co.uk/ups-maintenance
Ive tried messing around with buttons and text boxes but its not right. Any ideas:
Here is the current page
http://www.generatorservicing.com/new/
Many thanks!
The border, padding and top menu is still there somehow please use google chrome browser and you will se it.
Think its something about : class”container” or class”sub_menu” and id”header_meta´”
My CSS so far:
/* Font size */
body { font-size: 14px;}
/* Disable Enfold Responsive menu button */
.main_menu .mobileMenu { display:none !important; }
/* Disable top menu */
#header_meta { display: none !important;}
/* Disable top social bookmarks */
#top .social_bookmarks { display: none;}
/* Disable logout link in menu */
.page-item-logout {display:none;}
.bottom_nav_header.social_header #header_main .container {height: 140px; }
#header_main .container_wrap { border-top-style: none; }
//M
Hey!
Please add following code to Quick CSS as well
#header_main .container_wrap { border-top-style: none; }
.logo img { padding: 0; }
There is only 5px of padding on top and bottom. You should edit your logo image and remove extra spaces
Best regards,
Yigit
….AND with the color section:
is there ANY solution that a photograph or easy-slider can be flush top and bottom padding, margins 0000
AND have the typography next to it with space top and bottom?
Aha!
Perhaps the problem is with the sidebar navigation code you have given me is that it is NOT a widget but the normal sidebar navigation
(the reason why it is not in alphabetical order is because I used the order that page should be in the page editing area)
AGAIN: the current page item for the side navigation works only for the first (top) page
when one chooses another page on the sidebar the main navigation no longer shows which main menu item one is in.
SOLUTION?
TELEPHONE solutions WORK GREAT! – thanks
Hey Kimberly!
Please add following code to Quick CSS in Enfold theme options under Styling tab
@media only screen and (max-width: 767px) {
.responsive #top .avia-smallarrow-slider .flex_column {
margin: 0px!important;
width: 50%!important;
}}
Regards,
Yigit
Hey!
It is possible but header will not be resizing when you scroll. Please add following code to Quick CSS too
#header_main .container, .main_menu ul:first-child > li a { height: 44px!important;
line-height: 44px!important;
}
.logo, .logo a, .logo img { max-height: 44px!important; }
.fixed_header #main {
padding-top: 44px;
}
Best regards,
Yigit
Hello,
That code centered the logo. (see image)
http://s7.postimg.org/5yu03t17v/Screen_Shot_2014_02_19_at_3_31_28_AM.png
Is there any way to get rid of some of the white space on the top and bottom of the header?
@pako69
I got help with that, in header.php, just before </head>, I’ve added:
<script>
// On window load. This waits until images have loaded which is essential
jQuery(window).load(function(){
// Fade in images so there isn’t a color “pop” document load and then on window load
jQuery(“.isotope img”).fadeIn(500);
// clone image
jQuery(‘.isotope img’).each(function(){
var el = jQuery(this);
el.css({“position”:”absolute”}).wrap(“<div class=’img_wrapper’ style=’display: inline-block’>”).clone().addClass(‘img_grayscale’).css({“position”:”absolute”,”z-index”:”998″,”opacity”:”0″}).insertBefore(el).queue(function(){
var el = jQuery(this);
el.parent().css({“width”:this.width,”height”:this.height});
el.dequeue();
});
this.src = grayscale(this.src);
});
// Fade image
jQuery(‘.isotope img’).mouseover(function(){
jQuery(this).parent().find(‘img:first’).stop().animate({opacity:1}, 1000);
})
jQuery(‘.img_grayscale’).mouseout(function(){
jQuery(this).stop().animate({opacity:0}, 1000);
});
});
// Grayscale w canvas method
function grayscale(src){
var canvas = document.createElement(‘canvas’);
var ctx = canvas.getContext(‘2d’);
var imgObj = new Image();
imgObj.src = src;
canvas.width = imgObj.width;
canvas.height = imgObj.height;
ctx.drawImage(imgObj, 0, 0);
var imgPixels = ctx.getImageData(0, 0, canvas.width, canvas.height);
for(var y = 0; y < imgPixels.height; y++){
for(var x = 0; x < imgPixels.width; x++){
var i = (y * 4) * imgPixels.width + x * 4;
var avg = (imgPixels.data[i] + imgPixels.data[i + 1] + imgPixels.data[i + 2]) / 3;
imgPixels.data[i] = avg;
imgPixels.data[i + 1] = avg;
imgPixels.data[i + 2] = avg;
}
}
ctx.putImageData(imgPixels, 0, 0, 0, 0, imgPixels.width, imgPixels.height);
return canvas.toDataURL();
}
</script>
Hi!
Please try adding following code to Quick CSS in Enfold theme options under Styling tab
.logo img { margin-top: 20px; }
.header-scrolled .logo img { margin-top: 0; }
Cheers!
Yigit
Thanks Peter – I have another topic open that has not been answered – I need to turn off the slideshow titles and can’t get the right code.
tried this:
.avia-slideshow .avia-caption .avia-caption-title {
display:none !important;
}
which did not fix it. Can you help with this?
Thanks.
n
Hey.
Thanks for this awesome theme.
I have two questions:
1. Can I hide/disable a color section instead of deleting it all together?
2. How can I add a newsletter sign up box to the top menu?
Thanks,
Roy
Dear Support team,
Thank you for taking the time to help me!
I have 3 questions, need your expert advice.
My URL is http://www.1realestatesg.com/alana/
1. I noticed that the background colour in the tables on the left, the background colour alternates. Its light grey at first, then white, then light grey again. If the background colour is white, the font is also lighter as well. Is there a way for me to make all the boxes consistently 1 colour instead? I would prefer it if its all grey.
2. On the right side of the page, I have a tabs section. How do I align the top of the tabs with the table on the left? As of now, the tabs is lower than the tables.
3. Is there a way to change font size and colour for the tabs?
Thank you for taking the time to answer my questions. I really appreciate it!
Dalen
Hey theroyalvideographer!
1) I’m not sure which social bookmarks plugin you use at the moment but please try: http://wordpress.org/plugins/simple-share-buttons-adder/ – I know some users already use it with Enfold without any issues. You can even use it for advanced share buttons (post slider, etc.: https://kriesi.at/support/topic/add-share-buttons-to-postslider-php/ ).
2) Can you post a link to the comment form? I need to investigate the css code.
Regards,
Peter
Hi,
I add the following lines on the quick CSS as you said.
.avia-tooltip {
top: 400px !important;
}
Unfortunately, it looks great for the first line of my images, but it goes worst for the lines 2, 3 and so on.
You can have a look at it here : http://www.gstarevents.com/references/
Waiting for your reply,
Thanks a lot,
My best regards,
ALexandra
Hey!
Please create me an admin account – I’ll check the configuration. When I use the login credentials here: https://kriesi.at/support/topic/post_gallery-filter/#post-214021 I just get a white screen.
Regards,
Peter
Hi Ismael
I have the theme files deleted using FTP and multiple re-recorded, all plugins deactivated.
Unfortunately, no change.
I have unfortunately only 64mb at disposal.
Regards
Bruno
-
This reply was modified 11 years, 11 months ago by
strabru.
Hi aquatucker!
Insert this code into your functions.php file:
add_filter('avf_logo_subtext', 'kriesi_logo_addition');
function kriesi_logo_addition($sub)
{
$sub .= "<strong class='logo-title'>My Text</strong>";
$sub .= "<strong class='logo-title logo-subtitle'>Another custom text line</strong>";
return $sub;
}
and replace the “My Text” text and “Another custom text line” with your custom text. Then insert this code:
#top .logo-subtitle {
color: #aaa;
top: 7px;
}
#top .logo-title {
transition: opacity 0.4s ease-out;
-moz-transition: opacity 0.4s ease-out;
-webkit-transition: opacity 0.4s ease-out;
-o-transition: opacity 0.4s ease-out;
font-size: 12px;
color: #000;
position: absolute;
left: 7px;
top: -7px;
opacity: 1;
white-space: nowrap;
}
#top .subtext {
float: left;
position: relative;
}
#top .header-scrolled .logo-title {
opacity: 0;
filter: alpha(opacity=0);
}
into the quick css field.
Cheers!
Peter
Just one more thing it’s too much space between logo and top and logo and menu.
How can i reduce this spacing?
Then there is border over the logo that I want to remove.
//M
Hi!
Ich würde grundsätzlich davon abraten den Banner so zu platzieren, da beim responsive Design es zu unschönen Darstellungsfehlern kommen kann, wenn der Banner außerhalb der Content Area bzw Sidebar angezeigt wird. Wenn du es trotzdem machen möchtest besteht zB die Möglichkeit das Banner Widget mit position:absolute; oder position:fixed; zu platzieren (um es aus dem Content Bereich zu ziehen) und dann kann man mit top/left Angaben die genaue Position bestimmen. Genaue Hilfestellung (mit CSS Code, etc.) kann ich nur geben, wenn ich mir die Website samt Banner Widget ansehen kann.
Best regards,
Peter
Hi!
Please use this on Quick CSS to align the button:
#av_section_8 .avia_ajax_form .form_element_half {
width: 30%;
}
#av_section_8 .avia_ajax_form p:last-child {
float: left;
width: auto;
clear: none;
top: 27px;
left: 10px;
}
Cheers!
Ismael
Hey jmikhail!
1.) Please use this on Quick CSS or custom.css:
@media only screen and (max-width: 767px) {
.bottom_nav_header.social_header .logo {
position: relative;
margin-top: 60px;
}
}
2.) This is for the social icons:
@media only screen and (max-width: 767px) {
.responsive.bottom_nav_header #header_main .social_bookmarks {
top: -110px;
}
}
3.) Use this:
@media only screen and (max-width: 767px) {
#header_main {
z-index: 3;
}
.bottom_nav_header #advanced_menu_toggle {
top: 210px;
}
}
Cheers!
Ismael