Forum Replies Created
-
AuthorPosts
-
Hi!
kannst du uns Adminzugang verschaffen? dann schauen wir uns das mal genauer an. Poste Logindaten hier als private Nachricht.
Gruß,
AndyNovember 5, 2015 at 4:02 pm in reply to: Justify length of sidebar menu container to content container length #530874Hey!
hm? I don’t understand what you want to show me with that screenshot. Before my code your menubar looked like this:
When implementing my code your menubar looks like this:
http://i.imgur.com/BardWwrlI thought these changes are what it’s all about? What else do you want to achieve?
Regards,
Andy-
This reply was modified 9 years, 8 months ago by
Andy.
Hey BuroStaal!
about which kind of search results are you talking about?
Cheers!
AndyHi T_Architect88-2015!
you can center your menu with this code in Quick CSS field:
.avia-menu.av-main-nav-wrap { margin-right: 180px; }
Adjust as needed.
Best regards,
AndyNovember 4, 2015 at 4:15 pm in reply to: Page background transparent on some pages but not all #530152Hi!
not sure what you mean, but to have a transparent background for #header_meta use this code:
#header_meta { background-color: transparent !important; }
Regards,
AndyNovember 4, 2015 at 4:11 pm in reply to: Enfold mobile version – center logo and secondary menu #530144Hi!
which mobile device are you using? Try this code:
@media only screen and (max-width: 767px) { .responsive .logo { margin-left: 50px !important; }}
and adjust as needed.
Clear browser cache and hard refresh a few times afterwards.
Best regards,
AndyHey!
feel free to make a feature request for Kriesi about this here: kriesi.at/support/enfold-feature-requests/
Regards,
AndyHey!
try to increase it’s width using this code in Quick CSS field:
div#map-section { left: -38px; position: relative; width: 110%; }
You can define a custom section ID for any color section to define a unique CSS class for it. Just edit the color section in question and look for “For Developers: Section ID”.
Regards,
AndyHey!
glad it’s working for you now and thanks for sharing your solution here!
Let us know in a new ticket if you have some more questions related to the theme. We are happy to assist you.
Cheers!
AndyHi!
as I said: open a new ticket for a new question. Thank you.
Best regards,
AndyHi!
we would need a test page showing the issue with the table in question, because we need to be able to inspect the elements. I thought about defining a min-width value for the rows, maybe it could work in your case. Provide us a link and we check it.
Best regards,
AndyHey!
you are welcome and glad it is working for you.
Let us know in a new ticket if you have some more questions related to the theme. We are happy to assist you.
Best regards,
AndyHi!
is you last post still a question about widget logic? If not it would be best to open a new ticket for a new question.
Can you explain more about the issue please? do you want to update the theme? about which generated download file are you talking about?
Regards,
AndyHey!
I checked your website again and your table seems to be exactly the way you want. Could you fix it?
Regards,
AndyHi!
still no answer to my question, so please provide us admin access, because then we can get a deeper look into it. Post login details here as private reply.
Best regards,
AndyNovember 4, 2015 at 3:18 pm in reply to: Breadcrumbs error & header image in background on reload #530064Hey!
Do you get the same result with your breadcrumbs when activating a default WordPress theme?
What happens if you use breadcrumbs from Yoast or any other (breadcrumb) plugin instead? I think there are plugins out there where you have much more options to customize your breadcrumbs.2.) Not sure what you mean and you background image is always showing for me. Can you highlight using screenshots what’s going on please? use imgur.com or dropbox.
Cheers!
AndyHey!
can you show us the result you want to achieve please?
Best regards,
AndyNovember 4, 2015 at 3:05 pm in reply to: Masonry Gallery layouts worse after publishing compared to Preview #530048Hi!
thank you for making us aware!
Hopefully Kriesi can find a solution for this issue soon.
Cheers!
AndyHey!
not sure what you mean. Did you add the new code below line 16? does it work for you?
Best regards,
AndyNovember 4, 2015 at 3:01 pm in reply to: Masonry Gallery layouts worse after publishing compared to Preview #530043Hey!
I could reproduce the issue, so I have informed Kriesi about it. He is quite busy right now, because of the new Enfold version coming soon. Thank you for being patient!
Cheers!
AndyNovember 4, 2015 at 2:47 pm in reply to: Desktop vs. mobile: logo centered / whitespace too much #530037Hi!
this code you are using:
@media only screen and (max-width: 767px) { .responsive .logo a { display: inline-block; vertical-align: middle; }
is missing a bracket at the end and should be changed to this:
@media only screen and (max-width: 767px) { .responsive .logo a { display: inline-block; vertical-align: middle; }}
You are using an old version of the theme by the way. Please upgrade and let us know when you are done and still need help.
Cheers!
AndyNovember 4, 2015 at 2:43 pm in reply to: How to add read more button and remove excerpt from category page? #530035Hi DROR!
try to use a You can use the <!–more–> tag.
Regards,
AndyNovember 4, 2015 at 2:40 pm in reply to: Display Woocommerce price and sale price dynamically #530034Hey!
not sure if this will be possible. But maybe you just need to hide something via CSS? could you highlight your intentions using screenshots/mockups please? to make things clear for us. You can use imgur.com or dropbox.
Best regards,
AndyHi!
öffne deine functions.php und passe dafür diese Zeile an:
$avia_config['imgSize']['masonry'] = array('width'=>705, 'height'=>705 , 'crop' => false); // images for fullscreen masonry
Hinterher dann bitte thumbnails regeneraten.
Gruß!
Andy-
This reply was modified 9 years, 8 months ago by
Andy.
Hi!
alright, let us know if you have some more questions related to the theme and we are happy to assist you.
Best regards,
AndyNovember 4, 2015 at 2:24 pm in reply to: Masonry Gallery layouts worse after publishing compared to Preview #530024Hey!
can you provide us admin access, so we can take a deeper look into it? post login details here as private reply.
Cheers!
AndyHi!
Please edit functions.php, find this code on line 16:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below this add this new code instead:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Playfair Display'] = 'Playfair Display:400,400italic,700'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Playfair Display'] = 'Playfair Display:400,400italic,700'; return $fonts; }
Hope this will work for you now.
Best regards,
AndyNovember 4, 2015 at 2:14 pm in reply to: Masonry Gallery layouts worse after publishing compared to Preview #530012Hey!
do you get the same result when you deactivate all your plugins? clear browser cache and hard refresh a few times afterwards.
Regards,
AndyHey!
would be good if you could open new tickets for new questions. Thank you!
1. Use this code:
div .av_one_third { margin-left: 55px; width: 309px; }
2. It seems you could already remove it. If not clear browser cache and hard refresh a few times.
3. It could be possible but would require a huge amount of time and customization. You could hire a freelance developer for this job: http://kriesi.at/contact/customization
Regards,
AndyHi!
are you sure this is the correct link where we can see the issue? because I can’t find the table in question.
Regards,
Andy -
This reply was modified 9 years, 8 months ago by
-
AuthorPosts