-
AuthorSearch Results
-
August 8, 2013 at 12:55 pm #133143
Great! that is awesome.
The feature i was after was an image, text and button appearing only when scrolled over with mouse (or touched on an iPad)
What I managed to create so far is and image with text and button on top of it.
Any help would be greatly appreciated.
Jonathan
August 8, 2013 at 12:48 pm #130590In reply to: Bloposts don't show headers correctly anymore
Hi Nick,
I just saw your reply and placed your CSS in the quick CSS, thanks! As soon as I am adding a new blogpost, I will write back here in case the issue is coming up again.
Long ago I turned to Elance to find reputable freelance developers, but despite the awesome reviews some of the top ones had and the super money they charged, I got burned more than once, hence I am bit frustrated and don’t have that much time anymore to spend in looking for a reliable developer. So I am forced to do everything myself (which I don’t love because I’d rather spend time doing other things) and I am not tech savvy, so you can kind of imagine how I usually feel everytime I have to put my hands on the site.
You did a great job when you worked around a couple of issues on my site, however your fix were all gone once the new update of Enfold was released. So I was back to the beginning.
Also, you told me you noticed that my site is not indexed at all, so whatever appealing the site is, it’s kind of useless if nobody finds it! And I am running around in circles to try and understand how to rank it… working with Yoast and SeoPressor plugins, they seemed to give me great feedback, yet I can’t find my blogposts or pages anywhere in Google… :-(
Antonio
August 8, 2013 at 10:59 am #27426Topic: Add Custom Font (Not Google Font)
in forum EnfoldHiruseki
ParticipantHello,
So I’ve looked around the forum quite a bit, and I still can’t seem to come up with a solution. I’m trying to add a custom font to my website, it’s called “078MKMC_.ttf”, and my website is http://www.brooklynhouserestaurant.com
I created a folder called “fonts” with my .ttf file, uploaded it to the server, edited custom.css to include:
@font-face {
font-family: ‘078MKMC_’;
src: local url(‘fonts/078MKMC_.TTF’), local(‘078MKMC_’), url(‘http://www.brooklynhouserestaurant.com/wp-content/themes/enfold/css/fonts/078MKMC_.TTF’) format(‘truetype’);
}
h1, h2, h3, h4, h5, h6, tr.pricing-row td, #top .portfolio-title, .callout .content-area, .avia-big-box .avia-innerbox {
font-family: “078MKMC_” !important;
}
Nothing happens. I’ve set Enfold > Styling > to no custom font, nothing seems to change. I plan on using this font for the menu and all the content, am I missing something here? I’ve also tried adding this to the QuickCSS, nothing happens.
I also tried a plugin that was supposed to upload fonts for me, “WordPress Font Uploader Free”, and that didn’t make any difference either.
Any suggestions?
Thank you!
August 8, 2013 at 10:17 am #133542In reply to: Internet explorer 8…
Ok, I found some more info about the problem, and it’s not just only related to IE8. When WordPress 3.6 was released and before the theme got updated to 1.9.1, I through a tip on the “do not update thread” installed the plugin jQuery Updater (http://www.ramoonus.nl/webdesign/wordpress/jquery-updater/). It seems that it was causing some of the problems, but when I deactivated the plugin, I got problems on the latest Chrome instead. Easysliders don’t work at all (both in new Chrome and old IE8).
Maybe this has something to do with this: https://kriesi.at/support/topic/layerslider-jquery-incompatibility-issue ?
August 8, 2013 at 7:29 am #133644In reply to: Move breadcrumb under slider or colored section?
Hi,
No, right now this is not possible. You can add the idea to the feature request thread: https://kriesi.at/support/topic/enfold-feature-requests though and maybe we’ll pick it up and add a new layout element to the template builder.
August 8, 2013 at 6:45 am #132628In reply to: Responsive menu tewak
You need to change the top margin – set it to 176px (instead of 81px). Tbh I’d not include the logo in the menu because it eats up too much space at the top but it’s up to you.
August 8, 2013 at 6:27 am #133252Hi,
Sorry for the delay, it is my fault.
The background image can only be used when the theme is in boxed layout. There is no background image in stretched layout. So in a boxed layout a full width slider will not be able to be full width but only as big as the boxed layout. When there is no background image (stretched layout) the layerslider can also stretch fully.
You can include a background image via css yourself.
Try adding the css code below to Quick CSS located in Enfold > (Theme Options) > Layout Styling … the text area on the bottom of the page… or you can add the code below to /css/custom.css at the end of the file:
.bg_container {
background-image: url(https://enfold2.dev/wp-content/themes/enfold/images/background-images/floral-dark.png);
background-position: center center;
background-attachment: fixed;
background-repeat: no-repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
height: 100%;
width: 100%;
position: fixed;
z-index: 0;
top: 0;
left: 0;
}You can use your own image ofcourse.
And in the backend, set to no background image.
Thanks,
Nick
August 8, 2013 at 6:18 am #133754Hey,
Please refer to this link: https://kriesi.at/support/topic/scrolling-to-bottom-before-gallery-loads
Regards,
Ismael
August 8, 2013 at 6:12 am #133745In reply to: how can i set maximum resolution?
Hi,
You can edit css > grid.css.
.responsive .boxed#top {
width: 1130px;
}
.responsive .container {
width: 1030px;
}Regards,
Ismael
August 8, 2013 at 5:15 am #133884In reply to: Gallery Images not Loading until Scroll
figured this one out by finding a previous support post with the same issue:
https://kriesi.at/support/topic/scrolling-to-bottom-before-gallery-loads
thanks!!!!!
August 8, 2013 at 4:59 am #133794In reply to: Transparent Manu
Hi,
You can add this on your custom.css or Quick CSS:
#header_main .container, .header_color .header_bg, #header, #header_meta, #header_main, #top .social_bookmarks li, #top .sub_menu > ul > li {
background: none;
box-shadow: none;
border: none;
}To fully realize the transparent effect, move the #main div on top:
.fixed_header.social_header #main {
padding-top: 20px;
}This will work better for non-fixed headers.
Regards,
Ismael
August 8, 2013 at 4:42 am #133726In reply to: Responsive Issues
Hi,
You can use these on your custom.css or Quick CSS
1.) Move phone number:
@media only screen and (max-width: 767px) {
.responsive #header .social_bookmarks {
margin-bottom: 10px;
}
}2.) You can move the logo using this
@media only screen and (max-width: 767px) {
#header_main {
z-index: 9999;
}
.responsive .logo {
top: -50px;
margin-left: 100px;
}
}Adjust the values.
3.) You can adjust the font size of the special heading while viewing on mobile devices
@media only screen and (max-width: 767px) {
.av-special-heading h3 {
font-size: 13px;
letter-spacing: 0;
}
}Regards,
Ismael
August 8, 2013 at 4:28 am #133183In reply to: Shortcodes in tabs and WP restore function
Hi,
@koelnermusik: As mentioned above, you can switch the layout editor to debug mode to see the actual shortcode below. This is like looking at the default editor while you are on the Advance Layout Editor.
https://kriesi.at/support/topic/shortcodes-in-tabs-and-wp-restore-function#post-129391
Regards,
Ismael
August 8, 2013 at 3:45 am #133671In reply to: How to remove very top header on mobile
August 8, 2013 at 3:28 am #133723In reply to: Center horizontal on heading
Hello?
Another question I have, I am not quite sure what the rule is for multiple questions, should I be making a separate topic?
Anyway, my other question is about Testimonials. The current variation we have are One testimonial rotating and a grid of testimonials. Would there be possibly a way to show <b>one testimonial but random each visit</b>?
August 8, 2013 at 3:24 am #133083In reply to: spacing size between columns layout?
Hi,
Please add this on your custom.css or Quick CSS
body .column-top-margin {
margin-top: 20px;
}You can use Google Chrome’s (Inspect Element) or Firefox’s Firebug.
Regards,
Ismael
August 8, 2013 at 1:46 am #133459In reply to: Center text and crop ratio
Hi,
The only thing on that page I dont see centered is the Profesjonell fotograf i Fredrikstad og Sarpsborg . The reason why its not centered is the invalid html tags you are using. Please take a look at yours
<h2 style=""text-align:" center;"="">Profesjonell fotograf i Fredrikstad og Sarpsborg</h2>and this is how it should be (correct way)
<h2 style="text-align: center;">Profesjonell fotograf i Fredrikstad og Sarpsborg</h2>You are using wrong html in your portfolio, please clean it out of all the garbage tags you have
<div class="avia-testimonial-content">
<h4 style=""text-align:" left;"="">
Anbefales, topp resultat</h4>
<p style="text-align: left;">
Fotograferingsdagen kom endelig, og etter å først å ha kjørt oss bort i Sarpsborg, ble vi møtt av Marius. Førsteinntrykket passet godt med en veldig <strong>
<em>
hyggelig epost</em>
</strong>
utveksling for å finne tid og sted. Problem nr. 1 er jo hva skal man ha på seg til en fotografering?? Fikk også her <strong>
<em>
gode råd</em>
</strong>
av fotografen. Det ble en <strong>
<em>
artig opplevelse</em>
</strong>
å være med på familiefotografering med 2 små viltre krabater som ikke var helt interessert i å høre på verken fotografen, mor eller besteforeldre. Vi opplevde fotografen som <em>
<strong>
utrolig tålmodig</strong>
og <strong>
utholdende</strong>
</em>
og fikk se resultatet noen dager senere – her var det fanget opp <strong>
<em>
mange flotte positurer og ansiktsuttrykk</em>
</strong>
både av barn og voksne. Utveksling av bilder mellom oss som kunde og fotografen fungerte veldig bra, i disse elektroniske tider, vi fikk bildene til gjennomsyn, men da dukket problem nr. 2 opp, hvilke 15 bilder skulle velges – det var helt umulig så bestillingen ble mye størren enn først planlagt. Vi fikk ganske kjapt tilbake de redigerte bildene og <strong>
<em>
resultatet er kjempeflott</em>
</strong>
, da er vi ved problem nr. 3, hvilke bilder skal forstørres. Hvem skulle tro at en så “enkel” operasjon skulle by på så mye hodebry! Vi klarte å velge ut noen bilder som nå er sendt til forstørring og venter spent på dette resultatet.
</p>
<p style="text-align: left;">
Med andre ord kan vi ikke annet enn bare <strong>
<em>
anbefale Wallin som fotograf</em>
</strong>
, både i forhold til bestillingen, fotograferingen og leveringen, alt til mer eller mindre avtalte tider uten noen særlig forsinkelser enn helligdager i jula.
</p>
</div>Please switch between text and code view and make sure that your html tags open and close and dont overlap.
Thanks,
Nick
August 8, 2013 at 1:33 am #133440In reply to: Stop removing line breaks
Hi,
Yes, at the moment it is visible though this is a good suggestion that I recommend you add to the https://kriesi.at/support/topic/enfold-feature-requests Feature Requests since I dont think I saw that one up there and it makes sense.
Thanks,
Nick
August 7, 2013 at 11:56 pm #132803Thanks, that was simpler than I thought! I got it working but I have an issue now… my top menu item button states appear to be disabled.
I may be tweaking my page, so this link may not work when you get to it, but to give a sense of what I mean:
I didn’t expect the selected state to function, because the selections are all dynamic and tied to anchors/section IDs now, but can I still have over and activate states? Or at least over? I find it gets confusing, just reading the selections and being able to differentiate the options, and know what you’re clicking into as it is.
thanks!
August 7, 2013 at 11:32 pm #132382In reply to: Page content missing or broken in browser tests
Hi Nick, no problem at all and sorry for misunderstanding you too :) Well, you may have a point after all with BIG guns who write these media queries as it just isn’t working for me at all and I’ve now tried the new code with pretty much every combination of querie too.
I meant when you insert an actual image into the iconbox and rollover the image with your mouse, a highlighted area appears with an icon and the image area expands vertically by roughly 20px pushing content down further. Might be something to do with the: image-overlay-top style?
I can send a link for testing purposes if you have some way I can pm you, or email directly. Whatever suits you best, but I can’t post the URL in a forum.
Thanks again,
August 7, 2013 at 11:23 pm #132381In reply to: Page content missing or broken in browser tests
Hi,
Yeh my bad for structuring my reply in a way I wanted to structure the css article lol. So the tone was not directed at you but at the top10 results on google. I wanted that indignation … in any case…
Don’t worry about my time. I am gonna write an article up anyhow …
http://kriesi.at/themes/enfold/shortcodes/iconbox/ <— iconbox
Do you mean the glyph? The heart and star?
Or do you mean placing an image inside there.. Really need to see the css and look at it through chrome developer tools. I would guess there is no height set on the image container probably. or the height on the image is smaller than the height on the container and possibly a height set to auto somewhere. Hard to tell without seeing anything.
Thanks,
Nick
August 7, 2013 at 11:17 pm #132380In reply to: Page content missing or broken in browser tests
Ah, spoke too soon. I added this style:
#top.page-id-9576 .iconbox .iconbox_content {
height: 560px;
}
But forgot to even add the media queries. I’m going through the different queries again now but so far it doesn’t appear to be having any affect again :(
August 7, 2013 at 11:07 pm #132379In reply to: Page content missing or broken in browser tests
EDIT Ok, so I’ thought I had found a solution by changing the reference to the iconbox Ismael suggested above from:
.page-id-9576 .iconbox_content {
to:
#top.page-id-9576 .iconbox .iconbox_content {
This solution was posted for another of your themes in another forum.
Ah, just edited this as seen your reply above. No problem, that’s the downside to electronic communications as it’s easy to be taken the wrong way. Glad it was just a misunderstanding here as I have been very happy with the theme and support so far and REALLY DO appreciate every reply and your time too.
Now one last question please.
When I roll over an image in an iconbox it expands vertically a little, is there any way to prevent this?
Thanks
August 7, 2013 at 11:05 pm #132378In reply to: Page content missing or broken in browser tests
Hi,
Sorry, I was being serious. Because I have a ton of problems also finding the right media query for the ipad, and I always wanted to get those sites in top 10 google serp for ipad media queries, whose queries don’t actually work (iphone too). You think I came up with that huge plan spur of the moment? I just figured you got a website and we can do this test and maybe get a nice article write about it. Sorry if it came out differently.
This is as best as I can figure it out:
1) There are a number of versions of iPad. Which one are you targeting?
2) What browser on iPad are you targeting? (if its Safari, it has its own media queries specific to it, and also specific whether ios version is 5 or 6
3) Retina enabled or no?
4) What is the dpi?
Now with these settings we can try to make something that will work, but not for every single iPad (this is my theory) It should work on a specific ipad for which the media query is being built, but it probably will not work on every iPad. (again my theory).
I don’t have an iPad anymore. (kids , lol) but I can help you as far as I know. I still think this test with 8 pages would get some nice backlinks for you since i haven’t seen a css article like that for media queries.
Thanks,
Nick
August 7, 2013 at 10:30 pm #132376In reply to: Page content missing or broken in browser tests
Hi,
There are 8 versions of ipad media queries according to my count of different CSS websites , written by both gurus and others by spammers who just want their article in top 10 for the keyword, and most of the top 10 results seem to not work correctly. I saw we do a test, of the css media queries, and can get a nice article out of it I think that might just get to the top 10 for the ipad media query keyword.
But before doing that let’s double check and set this up like this:
Best way I think to do that would be to create 8 pages, and insert into each page a widget area. To each of the 8 widget areas need to add 8 different custom sidebars. And to each custom sidebar need to add the Enhanced Text Widget ( http://wordpress.org/plugins/enhanced-text-widget/ ) . And paste into each enhanced text widget 1 different media query to test. So this way at the end you will have 8 unique sidebars, each sidebar attached to its own page so that each one has different media queries from different sources.
I think it would be a killer article.
—
Media Queries are tough, especially when trying to target a screen size in portrait or landscape and may require lots of css adjustments. The answer is in those URLs. This is tedious but there is no 1 switch solution for customizing for a specific screen size. Lots and lots of css will have to be tweaked though it is likely to work on some but not all ipads.
Thanks,
Nick
August 7, 2013 at 10:05 pm #133381In reply to: Highlight a single tab
Hi,
I am sorry. Quick CSS is located in Enfold > (Theme Options) > Layout Styling at the bottom of that page there is a text area.
Alternately you can add it to /css/custom.css file.
The demo page shows 6 different tab configurations, so it should work if I guessed the right one you are using.
This applies to every page that has that type of tabs object on it. If you want to limit the functionality to a specific page, you can add #top.XXX before the css, and replace the xxx by a class found in the <body tag of the html when you view page source. Without seeing the page , I cant help you better than that.
So that if you view source of the page in a browser where you want the css to act on, and find the body tag, it will look like this
<body id="top" class="single single-chalet postid-131 stretched helvetica-neue-websave _helvetica_neue ">So in this case i would take out postid-131 and then change the css code to
#top.postid-131 .main_color .tabcontainer .tab_counter_1 {
color: #F00;
}Thanks,
Nick
August 7, 2013 at 9:09 pm #133380In reply to: Highlight a single tab
I found the answer in an older question I asked.
https://kriesi.at/support/topic/custom-css-page-option
This applies the change to only a single page.
Thanks again,
Andrew
August 7, 2013 at 8:15 pm #27391Topic: Fullscreen Slider Images Not Responsive?
in forum EnfoldSimplify
ParticipantHello – I’m using the fullscreen slider and it looks great in desktop – but when I reduce it to mobile the images in the slider doesn’t reduce or scale down. The other sliders scale down the images based on screen size. Does the fullscreen slider do this? Am I missing something?
Thanks,
Curt
August 7, 2013 at 8:13 pm #133670In reply to: How to remove very top header on mobile
Thank you… that worked perfectly… much appreciated…
MLL
August 7, 2013 at 5:53 pm #133837In reply to: Need the documentation for the Enfold theme
Hi Per,
I just answered in your previous topic but I’ll do so here as well http://docs.kriesi.at/enfold/documentation/index.html
Please don’t make duplicate posts as it makes it more difficult for searching and for us to answer.
Regards,
Devin
-
AuthorSearch Results
-
Search Results
-
Hello,
So I’ve looked around the forum quite a bit, and I still can’t seem to come up with a solution. I’m trying to add a custom font to my website, it’s called “078MKMC_.ttf”, and my website is http://www.brooklynhouserestaurant.com
I created a folder called “fonts” with my .ttf file, uploaded it to the server, edited custom.css to include:
@font-face {
font-family: ‘078MKMC_’;
src: local url(‘fonts/078MKMC_.TTF’), local(‘078MKMC_’), url(‘http://www.brooklynhouserestaurant.com/wp-content/themes/enfold/css/fonts/078MKMC_.TTF’) format(‘truetype’);
}
h1, h2, h3, h4, h5, h6, tr.pricing-row td, #top .portfolio-title, .callout .content-area, .avia-big-box .avia-innerbox {
font-family: “078MKMC_” !important;
}
Nothing happens. I’ve set Enfold > Styling > to no custom font, nothing seems to change. I plan on using this font for the menu and all the content, am I missing something here? I’ve also tried adding this to the QuickCSS, nothing happens.
I also tried a plugin that was supposed to upload fonts for me, “WordPress Font Uploader Free”, and that didn’t make any difference either.
Any suggestions?
Thank you!
Hello – I’m using the fullscreen slider and it looks great in desktop – but when I reduce it to mobile the images in the slider doesn’t reduce or scale down. The other sliders scale down the images based on screen size. Does the fullscreen slider do this? Am I missing something?
Thanks,
Curt
