Forum Replies Created
-
AuthorPosts
-
Hi,
I see it. A curious anomaly. Were you able to replicate it on your site as well? We will take a look at this, but this seems to be a problem with IE itself since the link is there on mouse over it just refuses to recognize it anymore. Did you test on your install if redoing the portfolio item, deleting it and adding a new one in its place removes this weird anomaly?
Thanks,
Nick
Hi,
Some videos can’t be embedded if the person who made them chooses that option. Is it that certain pages do no display any video or that certain videos simply will not display anywhere?
Please add the css below to your /css/custom.css OR to Quick CSS located in Enfold > (Theme Options) > Layout Styling … the text area at the bottom of that page.
Here is the css to move the video. You can change the number from -500 to 500. It was at 0px, Try 40px first as i have it set now..
.avia-video-16-9, .js_active .avia-iframe-wrap {
right: 40px;
}Thanks,
NIck
Hi,
Please update to Enfold 1.71.
This is the current color of the ghost font
#top .input-text, #top input[type="text"], #top input[type="input"], #top input[type="password"], #top input[type="email"], #top input[type="number"], #top input[type="url"], #top input[type="tel"], #top input[type="search"], #top textarea, #top select {
color: #777 !important;
}The disappearing message I believe is fixed in the updated theme.If not here is the css that takes care of it
.ajaxresponse {
overflow: visible !important;
}Thanks,
Nick
Hi,
1.
/*---- Font Menu Hover Color ----*/
#top .header_color .main_menu .menu ul li>a:hover {
color: red;
}
/*---- Background Menu Hover Color ----*/
.header_color .main_menu .menu ul li a:hover {
background-color: red;
}2.
body#top {
font-size: 15px;
}3.
Please open /framework/php/class-breadcrumbs.php and goto line 26 and to line 186.
Inside that file, you will need to search for __ (two underscore characters). You will find a lot of words used in breadcrumbs that need translating (i see 24 lines in total including above 2).
Ofcourse i am not sure why you are doing this since if you install WPML (pay) or this http://wordpress.org/plugins/codestyling-localization/ free plugin , you can translate directly from the backend all the words in the theme into french.
—
There is no need to install custom.css plugin, since the theme has Quick CSS, a text area located in Enfold > (Theme Options) > Layout Styling .on the bottom of the page… where you can paste any css and click save.
Thanks,
Nick
July 11, 2013 at 8:22 pm in reply to: Portfolio – Grids, Preview + Featured Images Not Working Correctly #128707Hi,
Well. Your homepage is Enfold while your portfolio page is Corona. You are probably using a plugin that allows different themes for different sections of the website. Disable all plugins , and I mean all plugins, empty your cache and return to this page. You can also go to Appearance > Themes and delete the Corona theme (only if you don’t need it, or download a backup first). Update wordpress core if you made any modifications to it.
Thanks,
Nick
Hi,
So when you delete the posts , they remain? What if you delete the entire site, will it still remain? Because that’s a good way to get free hosting. :) That was a joke, but you mean if you changed the theme, the old theme would remain? Because the only way you can delete a post then look at that post through a browser that never been to that site, is if the post is not really deleted or is held in a cache on the server. Can you ask your host what cache are being used if any on the server side?
Thanks,
Nick
Hi,
You created a menu but how are we supposed to know its structure or class names you used or anything else if you can’t provide us with a url? Please don’t paste pages of code here because that’s not going to help much. Please put up the page live , you can use a number of maintenance plugins to hide it from Google and nosy people, and set a password in the plugin to allow us to see the fronted of the website. Otherwise we can not ensure the code we give you will work.
Thanks,
Nick
Hi,
I don’t need class names.
Only Second Image
#top.page-id-3760 div.entry-content p:nth-of-type(3) span {
display:none !important;
}Only Third Image
#top.page-id-3760 div.entry-content p:nth-of-type(5) span {
display:none !important;
}Only Fourth Image
#top.page-id-3760 div.entry-content p:nth-of-type(6) span {
display:none !important;
}First, Second, Third Image but not Fourth Image :)
#top.page-id-3760 div.entry-content p:nth-of-type(2n+1) span {
display:none !important;
}Since you have paragraphs with text between some images but not other images, the numbers are not in order 1,2,3,4.
Thanks,
Nick
Hi,
I think you are mistaking your subscribe widget for a search box, because that’s the only thing I see that resembles a search box on the right sidebar.
Thanks,
Nick
July 11, 2013 at 1:43 pm in reply to: How to add a red retangle to the left of a quotation to help it stand out? #128892Hi,
That’s a blockquote , a standard html tag
<blockquote>some text</blockquote>
There is also an option for it in the buttons above the editor — b-quote
Thanks,
Nick
Hi,
This one will disable the first image only on that specific page
#top.page-id-3760 div.entry-content p:first-child span {
display:none !important;
}Thanks,
Nick
Hi,
Please post a snapshot of your settings for the blog page element.
Are the blog posts in Gear category located in a single or multiple categories?
Thanks,
Nick
Hi,
I clicked on 3 of your images and don’t see any videos. Please provide url to the specific page you are describing. This doesn’t show what you describe – shanetucker.com/videos/every-day-is-a-blessing-not-a-right/
Thanks,
Nick
Hi,
There are 4 identical images on that page. Which one are you talking about?
You can use this css to remove hover on that page for those images
#top.page-id-3760 .image-overlay.overlay-type-extern {
display: none !important;
}If you need to do it on a different page, just change 3760 in my code for the id of the page you want to do it on (view source and look for number on the <body tag)
Thanks,
Nick
July 11, 2013 at 12:51 pm in reply to: How to reduce the height of the main header (with the logo)? #127934Hi,
Sorry. My bad.
Ya I do have a solution. Your logo is 70px high and the total space is 116px which makes 46 total pixel of height difference. So lets cut the empty space by half, which is 23 pixels. Then we need to vertically center the logo in the remaining 23 pixels, so lets say 12pixels would be the top margin to vertically center..
Add the following changes to /js/avia.js . Find lines 819-837 .. that start with (curly brackets open) and end with (curly brackets close) and delete everything including the curly brackets, and paste the following in their place
{
var st = win.scrollTop(), newH = 0, newH2 = 0;
if(st < el_height / 2) {
newH = el_height - 23;
newH2 = 12
}else {
newH = el_height / 2;
newH2 = 0
}
elements.css({height:newH + "px", lineHeight:newH + "px", "margin-top":newH2 + "px"})
}That’s it. I tested it so it works. If you need to add space when the header shrinks, just change the last newH2 = 0 to 12, and add +23 to the *second* newH = el_height / 2 +23;
Thanks,
Nick
Hi,
Please read this post https://kriesi.at/support/topic/left-menu-listing-problem#post-124163 about a new social media icon plugin.
Thanks,
Nick
July 11, 2013 at 11:49 am in reply to: How do I add a you Tube Icon to social icons in the header #127053Hi,
Please read my post here about a new wordpress plugin that has youtube icon. https://kriesi.at/support/topic/left-menu-listing-problem#post-124163
Thanks,
Nick
Hi,
Please read my post here https://kriesi.at/support/topic/left-menu-listing-problem#post-124163 about a glyph icon plugin.
Thanks,
Nick
July 11, 2013 at 11:46 am in reply to: The Entypo Pictogram Suite – "Enfold RSS Link and Twitter Account" Widget #128930Hi,
Please look at my post here https://kriesi.at/support/topic/left-menu-listing-problem#post-124163 about a wordpress plugin with similar glyphs.
Thanks,
Nick
Hi,
There is a way to change the icons. There is a plugin, though its not listed on WordPress plugin repository that I found that has 350 or so glyphs including the following social media glyphs:
http://i.imgur.com/R2H13IF.png`
You can download the plugin here https://github.com/tommarshall/Font-Awesome-WordPress-Plugin/archive/85387af02c882a963778d38ba95c61a0b24181ab.zip from this branch ( https://github.com/tommarshall/Font-Awesome-WordPress-Plugin )
Once its installed you can use the
<i class="xxx"></i>
where you replace the xxx with the class name from the images above..
Here is the complete list of icons available with the plugin: http://fortawesome.github.io/Font-Awesome/cheatsheet/
Thanks,
Nick
Hi,
Kriesi has quite a ‘to do’ list that he has organized in a meaningful way so though i am not positive about the very next update, it will certainly have a much higher priority than others (especially since some of the track has been laid down already above).
Thanks,
Nick
Hi,
I am sorry, but full size its the same slider as located on kriesi.at/themes/enfold but with substituted images. That slider has no issues with Android. So besides image replacement (i assume you used identical sized images in your replacement) if the only difference between yours and the demo is the change of the height via css (which the theme authors say should not be done because it will create problems such as you describe) then I am out of ideas. Have you searched on the LayerSlider forum or asked the developers there about the best way to resize a slider ?
Thanks,
Nick
Hi,
Yes. That is the css trick with the page-id. There are huge blocks of dozens of different selectors separated by commas that have a color assigned to all of them. That is what gives the primary color, alternate, header, etc..So if lets say that light blue color you have on home page can be easily changed to a different color on a per page basis by taking those huge blocks , making a copy of them and adding the page-id to the front of them.
But I see you are already customizing. . I took out the light blue color, all the selectors in the theme and dropped it here http://pastebin.com/E4P6z9ip since there are quite a few of them. I changed them to color red. A lot of them are used only if you have a specific layout element on the page. Just use a text editor to mass-replace the red color and then mass replace the page id, add the entire thing to css and you are set.
Thanks,
Nick
Hi,
I think Dude has the right way to go about this. Calendar plugin used a similar approach http://trac.theseednetwork.com/ticket/251 For me all the German words are static (in the sense that its always the same set of words in the same positions http://i.imgur.com/LaUGYv6.png these two words, and another phrase blinking quickly sometimes…) so worse comes to worse can even come up with a quick hack and add it right into the do_search function on line 913 of avia.js . Can possibly pull them into the php page (functions_enfold.php line 157, since one of the german words is just a single line above it i believe, the one in h4 tags).
Thanks,
Nick
Hi,
Please look on lines 208-209 of config-templatebuilder/avia-template-builder/config/meta.php. Switch those two lines so that the end result would look like this
"subtype" => array( "Don't display the Header" => "no",
"Display the Header" => 'yes',Thanks,
Nick
I think urlgone is overloaded http://www.clipular.com/c?9463023=RlPf2rRR4xHMNdzYw1V7VNMhV4Y&f=.png
Nick
Hi,
Send me an email please. usjahm (at) gmail (dot) com … referencing this post.
Thanks,
Nick
Hi,
The links you pasted above have expired. Please repost them again.
Thanks,
Nick
Hi,
I tried this a number of times from a live test site using that name, and on google and yahoo , everything comes out fine. I don’t have Outlook to test it.
Please insert this in place of the one line i pasted in my previous reply (in both locations lines 549 and 554)
$ttr = "";
$ttr = utf8_encode("Míveskönyv Könyvmanufaktúra");
$header .= 'From: ' . htmlspecialchars($ttr) . ' < (Email address hidden if logged out) > rn';Thanks,
NIck
Hi,
Check every box on that page. ‘Tatisma’ on your image should be the correct one, since it is number 5 checkbox counting from the end , and you checked number 4 from the end which is Comments, and not Discussion.
To completely remove comments from everywhere, please open up single.php in main theme folder, and find line 43 , and add two forward slashes // to it so that it will look like this
// comments_template( '/includes/comments.php');
—
The icons are not images, but are a special font , and are called glyphs. I had a page made where I showed how to add any glyph from http://www.fontello.com (where all the glyphs can be found) directly to the theme. In my example I add a yahoo icon, but it will work the same way with any icon. https://kriesi.at/support/topic/youtube-icon#post-117381
Thanks,
Nick
-
AuthorPosts