-
AuthorSearch Results
-
June 15, 2013 at 4:05 pm #123733
It just depends on how Kriesi wants to or can add it in. I’m going to close this topic for now until Kriesi can take a look and respond since there isn’t much we can do at the moment.
Regards,
Devin
June 15, 2013 at 3:36 pm #124937In reply to: Smaller padding around Images
Hi,
The side images doesn’t shrink. Actually, the code increased the size of the one_half column then decrease the left margin, so technically the red shoes is much bigger.
.page-id-1668 .av_one_half {
margin-left: 0.0001%;
margin-right: -3%;
width: 50%;
}This code decrease the left margin of one_fourth column, I will add the code to make them bigger.
.page-id-1668 .av_one_fourth {
margin-left: 3%;
width: 23.5%;
}This code makes sure that the first column has no left margin
.page-id-1668 .av_one_fourth.first {
margin-left: 0;
}This code to decrease the top padding
.page-id-1668 .template-page.content.twelve.alpha.units {
padding-top: 10px;
}Regards,
Ismael
June 15, 2013 at 3:35 pm #124990In reply to: Header and footer design
I have the same question, but I think I find the answer at https://kriesi.at/support/topic/footer-8
June 15, 2013 at 3:25 pm #125010In reply to: No texts are found in the sample pages.
Hi,
Do you have WordPress 3.5 or higher? Enfold theme will not work properly on older versions of wp.
Please increase the wordpress memory limit.
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
You can also set the Avia Builder to debug mode. Edit functions.php, find this code on line 16
if(isset($avia_config['use_child_theme_functions_only'])) return;Add the debug code below.
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}You will see the actual shortcode below the Avia Builder.
If you still can’t see the Avia Builder when editing a page, look for Screen Options (top right corner), check the Avia Builder.
Watch these videos: https://vimeo.com/channels/aviathemes
Regards,
Ismael
June 15, 2013 at 3:13 pm #116641June 15, 2013 at 3:12 pm #124999In reply to: Header menu intersecting with logo
Hi,
@juganrising: Thanks for the help. :)
@marjan2k: You can follow the links to fix the issue.
You can also add this on your custom.css or Quick CSS to fix the ovarlapping menu issue.
/*
Desktop Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the desktop view of your site */
@media only screen and (max-width: 1138px) and (min-width: 768px) {
.responsive .main_menu ul:first-child > li > a {
padding: 0 6px;
font-size: 12px;
}
}Regards,
Ismael
June 15, 2013 at 1:14 pm #124936In reply to: Smaller padding around Images
Thanks Ismael,
this worked perfectly only one thing the side images shrink see this screenshot the green arrow in the middle shows the Red shoes image stays the same size while the side images shrink in size (top image is as in dashboard original size and bottom is on live website)
* screenshot: http://demo.globalads24.com/wp-content/uploads/2013/06/Screen-Shot-2013-06-15-at-11.24.04-AM-2.jpg
so i need the images to stay the same size as in dashboard and the margins to be on left and right of the page aligned to left and right and middle image to stay aligned in the center. Would this be possible?
i adjusted some numbers below is the css code as i have it now and here is a live page http://www.omglovetwins.com/a-magento
.page-id-1668 .av_one_half {
margin-left: 0.0001%;
margin-right: -3%;
width: 50%;
}
.page-id-1668 .av_one_fourth {
margin-left: 3%;
}
.page-id-1668 .av_one_fourth.first {
margin-left: 0;
}
.page-id-1668 .template-page.content.twelve.alpha.units {
padding-top: 10px;
}PS. and thanks for pointing out about .page-id-1668 as this is just a test site i made a mistake was suppose to upload to a demo one as this website will be for our music and film so will be deleting it as soon as we finish testing for woocomerce :-)
Regards,
jasmine
June 15, 2013 at 6:57 am #124791In reply to: Change size of menu bar/field
Hi,
Please add this on your custom.css
.responsive #header_main_alternate .mobileMenu {
margin: 16px auto;
}
.responsive #top .mobileMenu {
width: auto;
padding: 10px 4px;
}Regards,
Ismael
June 15, 2013 at 6:50 am #124964In reply to: Remove Space above/below slider
Hi,
Please add this on your custom.css or Quick CSS
.fixed_header.social_header #main {
padding-top: 90px;
}
.template-page.content.twelve.alpha.units {
padding-top: 0;
}Regards,
Ismael
June 15, 2013 at 6:19 am #124946Hi,
Please visit this link:
https://kriesi.at/support/topic/custom-widget-areas-not-working-after-upgrade-to-15
Follow Dude’s instruction. It might fix the issue. Sometimes widget settings get stuck for no apparent reason.
Regards,
Ismael
June 15, 2013 at 5:54 am #124679In reply to: photo in single post page
Hi!
Insert following code into the quick css field
.logo a img {
margin-top: 15px;
}Regards,
Peter
June 15, 2013 at 5:43 am #124935In reply to: Smaller padding around Images
Hi,
Try this on your custom.css or Quick CSS
.page-id-1668 .av_one_half {
margin-left: 3%;
width: 50%;
}
.page-id-1668 .av_one_fourth {
margin-left: 3%;
}
.page-id-1668 .av_one_fourth.first {
margin-left: 0;
}
.page-id-1668 .template-page.content.twelve.alpha.units {
padding-top: 20px;
}.page-id-1668 is the unique id of the link you us. You can remove it if you want to apply the style throughout the site.
Regards,
Ismael
June 15, 2013 at 4:56 am #124815Hi,
Open header.php then find this code on line 104
$phone = avia_get_option('phone');
$phone_class = !empty($nav) ? "with_nav" : "";
if($phone) echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>";Cut it then place it below this code on line 135
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');Then add this on your custom.css or Quick CSS
.social_header .phone-info {
float: right;
margin-top: 40px;
margin-right: 120px;
}
#header_meta {
display: none;
}Regards,
Ismael
June 15, 2013 at 3:58 am #124613Hi.
2.) Your site is on maintenance mode, we would like to check the footer area.
3.) To change the menu font size and style, use this on your custom.css
.main_menu ul:first-child > li > a {
text-decoration: none;
font-weight: normal;
font-size: 20px;
}For the color, you can use this:
.header_color .main_menu ul:first-child > li > a {
color: red;
}Hover state color, use this
.header_color .main_menu ul:first-child > li a:hover {
color: blue;
}4.) To change the excerpt, edit the post, look for Screen Options (top right corner) and check the Excerpt option. You can place the excerpt manually. You can also use the <!–more–> tag. http://en.support.wordpress.com/splitting-content/more-tag/
Regards,
Ismael
June 15, 2013 at 1:00 am #124998In reply to: Header menu intersecting with logo
There are a few ways you can go about doing that, I have had good results by combining these two solutions
Try changing your switchwidth to a higher number so it changes to the mobile menu before it overlaps
https://kriesi.at/support/topic/making-the-responsive-dropdown-menu-appear-at-larger-resolutions
Near the bottom (Post 6)
June 14, 2013 at 11:24 pm #124983In reply to: "you are here:"
If you only want to remove the text see this post
https://kriesi.at/support/topic/breadcrumbs-change-you-are-here
If you want to turn off breadcrumbs all together then change
'breadcrumb' => true,in functions-enfold.php to
'breadcrumb' => false,June 14, 2013 at 9:27 pm #24846Topic: Remove Space above/below slider
in forum Enfoldborder
ParticipantI’m looking to remove the space/padding above and below the slider on the home page. Not sure what code to edit to accomplish this.
I’d like the bottom of the menu to align right up against the top of the slider and stay there, so there’s no white space like there is now. I’d like the same to happen right below the slider.
Also, anyone know why it looks like there’s 1 or 2 pixels added to the bottom of the slider image after scrolling (except towards the edges of the image)?
Here’s the site:
Thanks!
June 14, 2013 at 7:25 pm #124739In reply to: is Enfold Secondary Menu with Mega Menu possible?
I have added a picture to help add some clarity. See top right for example.
June 14, 2013 at 4:12 pm #124527In reply to: WPML copy content from ajax
Hi,
You are using photon.js which is resizing your images. I think that is part of jetpack plugin. Please turn off jetpack as in my experience that plugin is responsible for a quarter of all support issues or at least turn off its image resizing.
I use duplicate and then I decouple the duplication http://www.clipular.com/c?6288338927484928=Lk87W4U0oBA-iq67-c5Afr7gGoE&f=.png
Have the 3 main plugins of WPML running. translation management, string translation + main plugin.
To use copy, when you make and save the original text, scroll down to the bottom of the page and you will see a number of radio buttons with 3 choices as seen below. Make sure that you set Copy for the ones i listed below and click Apply right next to the radio buttons
http://www.clipular.com/c?6348812067012608=RcNhuaYzAhgIfpLbTLLxtNiqp6c&f=.png
_thumbnail_id Don't translate Copy Translate
_wp_old_slug Don't translate Copy Translate
_aviaLayoutBuilder_active Don't translate Copy Translate
_aviaLayoutBuilderCleanData Don't translate Copy Translate
_avia_builder_shortcode_tree Don't translate Copy Translate
layout Don't translate Copy Translate
sidebar Don't translate Copy Translate
header
_portfolio_custom_link Don't translate Copy Translate
_portfolio_custom_link_url Don't translate Copy Translate
_preview_ids Don't translate Copy Translate
_preview_display Don't translate Copy Translate
_preview_autorotation Don't translate Copy Translate
_preview_columns Don't translate Copy Translate
_preview_textWhen you now initially ho tosecond language page you should see something like this on top
http://www.clipular.com/c?5038743962517504=TSs6blsbN8gIk2NADgINR1ExqMg&f=.png
What’s interesting is that at that moment when you click copy content, even though nothing can be seen , it really is there. just click publish or save draft and when the page refreshes again you will see that indeed everything copies over.
So just remember to save as draft as first thing you do in order to make everything show up.
check the radio buttons for copy, thats the key to the whole copying business. I tested it and it copies perfectly, including the ajax bit.
http://www.clipular.com/c?6348812067012608=RcNhuaYzAhgIfpLbTLLxtNiqp6c&f=.png
Thanks,
Nick
June 14, 2013 at 2:20 pm #24819Topic: Problem with sidebar on archive page
in forum Enfoldntoklo
ParticipantMy test site is here:
http://dev.www.ntoklo.com/ntoklo/developer/
This page uses blog posts to display content and the menu on the right shows all posts; this is expected behaviour.
When you click on a category from the list underneath (such as http://dev.www.ntoklo.com/ntoklo/category/authentication/), a number of posts associated with that category are displayed using the archive.php template and the top section only of the sidebar displays the wrong content.
In the sidebar.php page, I’ve tried various means of forcing the dynamic_sidebar function to display the correct content, but none of them work – e.g.
dynamic_sidebar(“Sidebar Blog”);
I want to display the same list of blog posts on the archive page as you can see on the pages such as developer, nToklo Javascript Tag etc.
Can you please advise?
June 14, 2013 at 7:17 am #124760In reply to: Mobile Version – Layer not showing
Hi,
I don’t see the gradient effect on your header.
I think you already fix the logo alignment. It looks horizontally aligned to me.
To increase the padding, add this on your custom.css
#after_layer_slider_1 {
margin-top: 50px;
border-top: none;
}Regards,
Ismael
June 14, 2013 at 6:19 am #124639In reply to: Main offset
Hi,
I check it further and I can see the gap on the main div. Add this on your custom.css
/*
Mobile Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
@media only screen and (max-width: 900px) {
/* Add your Mobile Styles here */
#main {
margin-top: 0;
}
}Regards,
Ismael
June 14, 2013 at 6:14 am #124573In reply to: Resize the images in the blog or in singleposts
Hi, thanks for the reply!
Yes, now i´m using the grid. But there are two other problems now.
See it here:
https://kriesi.at/support/topic/photo-in-single-post-page#post-118162
and
https://kriesi.at/support/topic/problem-with-firefox-and-internet-explorer
June 14, 2013 at 1:35 am #124304In reply to: How to change menu background color?
#top ul:first-child > li > a {
color: #727272;
}
#top ul:first-child > li > a:hover {
color: #63cbd9;
}
I use this on my site , just change the color values
June 13, 2013 at 10:56 pm #124303In reply to: How to change menu background color?
Moving this back to the top for the third time…
June 13, 2013 at 8:08 pm #124687In reply to: Logo Shrinking Needs Solution
If Kriesi has a fix for it or does make any changes it will be in a future update. Otherwise, your best solution is don’t use the fixed header or force it to stay at the same taller size.
But please do not create a secondary topic if Kriesi has already addressed it. In this case, if he sees a fix he’ll add it in.
Regards,
Devin
June 13, 2013 at 7:56 pm #24778dsgnerfw
ParticipantHi guys, how do you change the submenu hover color ?
#top ul:first-child > li > a {
color: #727272;
}
#top ul:first-child > li > a:hover {
color: #63cbd9;
}
I use this code but i doesnt work on http://www.blue2x.com
I also want to change the copyright color and socket navigation color.
Thanks !
June 13, 2013 at 7:40 pm #24776kulsushil
ParticipantHello,
I have a problem with Responsive Header Main Menu (Slide Out Menu). When I choose this option, at device size 768px X 1024px (ipad) it shows both desktop and mobile menu. All I did was upload the theme and Import the dummy data and choose the slide out menu. Here is the picture. http://i41.tinypic.com/15gt2y9.jpg
But if I choose the drop down menu instead I don’t have this problem. Here is a picture when I choose drop down menu at 768px X 1024px (ipad). http://i39.tinypic.com/2pq4293.jpg
Anything I can do to prevent both desktop and mobile menu showing at same time when in ipad portrait mode .
Thanks,
Sushil
June 13, 2013 at 7:13 pm #124686In reply to: Logo Shrinking Needs Solution
Hi Devin. Thanks. I realize there are a number of requests on a daily basis. I actually have a few more posts from a day ago. Here is a similar link to the issue. https://kriesi.at/support/topic/issues-with-site-logo. It just sounded like Kriesi was working on some alternative solutions. Right now, the logo shrinks really bad to the point where you can’t read it. I will try and post some examples.
June 13, 2013 at 6:22 pm #123731Kriesi is tagged on the topic so he can see if the same thing can be integrated in to the Fixed position option. It looks like they are just using position:fixed with 50% 50% positioning but perhaps there is something more to it.
Regards,
Devin
-
AuthorSearch Results
-
Search Results
-
I’m looking to remove the space/padding above and below the slider on the home page. Not sure what code to edit to accomplish this.
I’d like the bottom of the menu to align right up against the top of the slider and stay there, so there’s no white space like there is now. I’d like the same to happen right below the slider.
Also, anyone know why it looks like there’s 1 or 2 pixels added to the bottom of the slider image after scrolling (except towards the edges of the image)?
Here’s the site:
Thanks!
Hi guys, how do you change the submenu hover color ?
#top ul:first-child > li > a {
color: #727272;
}
#top ul:first-child > li > a:hover {
color: #63cbd9;
}
I use this code but i doesnt work on http://www.blue2x.com
I also want to change the copyright color and socket navigation color.
Thanks !
Hello,
I have a problem with Responsive Header Main Menu (Slide Out Menu). When I choose this option, at device size 768px X 1024px (ipad) it shows both desktop and mobile menu. All I did was upload the theme and Import the dummy data and choose the slide out menu. Here is the picture. http://i41.tinypic.com/15gt2y9.jpg
But if I choose the drop down menu instead I don’t have this problem. Here is a picture when I choose drop down menu at 768px X 1024px (ipad). http://i39.tinypic.com/2pq4293.jpg
Anything I can do to prevent both desktop and mobile menu showing at same time when in ipad portrait mode .
Thanks,
Sushil
