Forum Replies Created
-
AuthorPosts
-
The tags aren’t already there. They either need to be added manually or via a plugin which can hook into the header.
Glad its in a somewhat working form now :)
Regrds,
Devin
Hi Graeme,
The Ajax portfolio preview image is completely separate from the regular portfolio content. You need to add your images and content to the meta box down below the visual editor that you want to show in the Ajax view of a portfolio item.
This is because the portfolio single page is basically a blank slate where you can organize and show the content however you want but the ajax view is more structured.
Regrds,
Devin
This image: http://diefarben.com/wp-content/uploads/2013/09/alstom_logo.jpg is 710 pixels wide.
On this page: http://diefarben.com/portfolio-item/alstom/ the container for that image is 650 pixels wide.
So in that gallery you have selected to use the full size image which is 710 pixels wide. This means the image gets scaled down.
Just keep in mind that you are only trying to match the exact size for Desktop users. So tablet and mobile users will still be getting an image that is scaled down.
The “Gallery” size is automatically created for any image that is larger than that size. However it will still be scaled down if the container you put the gallery in is smaller than that.
Hi erbsenlui,
Go to your header options in the theme options section and choose the Fixed Header with additional menu and social options.
Regrds,
Devin
Hi jguerrero01,
Unfortunately all we can really do is refer you to the codex entry for get_header since it isn’t code we wrote, have access to or can verify that it has been written correctly: http://codex.wordpress.org/Function_Reference/get_header
In theory, that is the correct way to have your file get a different header file and its just up to WordPress to read the code and execute it.
Regrds,
Devin
Hi frysjo,
I’m not sure how that could be happening since the theme doesn’t use a special version of the google font. It just loads it in directly *from* google.
The goo.gl link doesn’t show anything right now but if you can provide a link to your site so we can take a look at whats going on live that may help.
Regrds,
Devin
Are you using WordPress 3.6 and Enfold 2.0.1?
Hi mgould,
You would need to copy over that entire function (Register frontend javascripts) to your child theme’s functions.php file and make the change there.
Regards,
Devin
You can either do that or just let the thumbnail regeneration plugin run and see if that does it: http://wordpress.org/extend/plugins/regenerate-thumbnails/
Hi Fabiana,
What is the URL for your site? Have you tried changing the email address for the form to one hosted on your domain and checked to make sure it isn’t getting grabbed by your spam filters?
The fact that the autoresponder is going out sounds like its probably getting caught in a spam filter either where you can’t see it or in a folder that is just not getting checked.
Regards,
Devin
You’ve added some media queries at the end of the theme’s layout.css. This block specifically is changing the menu at min-width: 1650px:
.main_menu ul:first-child > li > a{
display:block;
text-decoration: none;
padding: 0 0px 0px 41px;
font-weight: normal;
font-size:12px;
font-weight: 600;
font-size: 13px;
background-image: url('http://uprisetestdomain.co.uk/paramount/wp-content/uploads/2013/06/bullet.png');
background-repeat: no-repeat;
background-position: 18px 12px;
}Its very bad practice to modify the theme’s css files directly. Instead you should only edit the custom.css file or add your css into the Quick CSS field in the theme’s Styling tab.
Hi italiatiles,
That is a question better asked on somewhere like StackOverflow: http://stackoverflow.com/ .
Regards,
Devin
Hi grouprpi,
When you add the line you can click on its Edit button and in the popup use the dropdown options for “Horizontal Ruler Styling
Here you can set the styling and size of the HR element” to choose the Short Separator.
That is the style with the circle in the middle.
Regards,
Devin
September 5, 2013 at 11:55 am in reply to: Add category as a CSS class to "Blog Posts" content element #139600Hi Bas,
The posts already have a category class on them actually. For example, open up this page: http://kriesi.at/themes/enfold/2012/12/12/lorem-ipsum-dolor-sit-amet-consectetuer-adipiscing-elit-aenean-commodo-ligula-eget-dolor-aenean-massa/
In dev tools add this css:
#top.single-post .category-images {
background: #333;
}Regards,
Devin
Hi carlamurray,
No, not that I have heard. But you can give it a quick try following Dude’s advice above and adding the code into the Div/Video field.
Regards,
Devin
The physical location doesn’t matter. Facebook is only scanning the data from the page live and then checking it.
I have a foggy memory of you needing to force a refresh from Facebook in order for the image to change. I think it was something with creating a widget/like box or something like that.
After a quick google try putting your URL in the debugger here to force it to refresh and re-read your OG data: https://developers.facebook.com/tools/debug
Regards,
Devin
September 5, 2013 at 11:47 am in reply to: Remove Admin Bar (instead of autohiding after loading) #139419Glad we could help. Let us know if you have any other questions or issues.
Hi Jan,
No, I don’t believe so but I can add it as a feature request for a future update. Not sure if it would be possible but it will be up to Kriesi to give it a try :)
Regards,
Devin
Hi MLA18,
You can try using the shop shortcode and putting the content under it but I’ve found WooCommerce has issues with that sometimes. See: http://docs.woothemes.com/document/woocommerce-shortcodes/
Regards,
Devin
Glad we could help. Let us know if you have any other questions or issues.
Hi cloud8,
None of your slider elements will work with WordPress 3.6 actually. You need to update your theme from 1.6 to the newest 2.0+ version to bring it up to date to work with WordPress 3.6.
For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: htps:/vimeo.com/chanels/aviathemes/67209750
Regards,
Devin
Hi TFT,
To alter a single element you would need to do it manually via css. So first you would need to add the following to your functions.php:
add_theme_support('avia_template_builder_custom_css');
Once you have done this you will have the option to add a custom class name on any avia widget element in your advanced layout editor. What this means is you can add a custom class name into that field for whatever element it is and customize its css declarations with your own values.
For example, you give an icon box the class name of tft-black-background-iconbox. Next you add the following to your Quick CSS in the styling tab to give the icon box a black background:
tft-black-background-iconbox {
background: #000;
}Anytime you add the same class name to an iconbox you get the same effect.
Regards,
Devin
Hi Jyles,
Our forums go by oldest post within a topic to newest so each time you self respond it actually pushes your topic to the end of our queue and not the start of it.
For your issue, what you would need to do is a bit complicated if you aren’t used to media queries. You can use media queries to change the margin-right on your numberbox class so that as the theme responds to the browsers width the margin changes.
See: http://css-tricks.com/css-media-queries/
To get you started this would be for the very largest screen size adjustment (all screens above 1650px wide):
@media screen and (min-width: 1650px){
.numbersbox { margin-right: 67px; }
}Regards,
Devin
Hi yukanl,
There is no trick to it. That image in the header is just covered by the transparent caption container. Its still publicly accessible: http://kriesi.at/themes/enfold/files/2013/04/woman3-1500×430.jpg
Regards,
Devin
September 5, 2013 at 1:46 am in reply to: Special Heading + Post Slider + Horizontal Line + RTL #139494Hi Eran,
1) The special heading with line is just the special heading element. The line gets added in automatically. Just make sure you are choosing the default style for the heading style.
2) For right now there is no option to put the heading in the middle with a line.
3) No, the grid is only available for Posts, Portfolio items or custom taxonomies. Pages aren’t an option for the element right now.
The modal window pop delay is a combination of either a slower connection or low php memory for your WordPress installation. You can try increasing the memory limit to help: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
I don’t have any news on the RTL version right now but I believe the next big launch for Kriesi is an updated kriesi.at and support forums update.
Regards,
Devin
make sure you add it into the Div/Video field and *not* the regular text field.
Hi Roine,
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#main .title_container {
display: none;
}This will keep you from needing to modify the framework and make it easier to update.
Regards,
Devin
What version of iPad is this happening on? I just did a quick test of the site with ipad2 and 3 and had no menu overlap issues.
The typical solution I suggest for menu overlap issues is to just adjust the switch width value. See: https://kriesi.at/support/topic/top-menu-with-the-social-icons-bigger?replies=5#post-132320
Upping it to 780px for instance to ensure it switches even before the ipad width may be what you are after if it is still causing issues on your end.
Looks like you got it sorted out! Live site is looking good with the 7 columns in place.
Let us know if you have any other questions or issues.
Regards,
Devin
-
AuthorPosts