Forum Replies Created
-
AuthorPosts
-
Hey!
Please try to use this instead:
.page-id-1195 .av_font_icon.avia-icon-pos-left { position: relative; left: 40%; margin-right: 10px; }
Adjust the right margin. :)
Regards,
IsmaelHey Ben!
Can you please give us a link to the website? I’m not sure what part of the header the screenshot is pointing to because of the modifications that you did with the theme. Anyway, you can change the border width using this on Quick CSS:
#header_main { border: none; } #header_main .container { border-bottom: 1px solid #e1e1e1; }
This will remove the #header_main border then add a bottom border on #header_main container.
Best regards,
IsmaelJanuary 3, 2014 at 10:03 am in reply to: Have easyslider fill up entire column with no padding or margins #204933Hey!
I’ll ask Dude for a solution. Please wait for his response.
Best regards,
IsmaelJanuary 3, 2014 at 9:41 am in reply to: Images appearing on top of menu (instead of underneath) when scrolling the page? #204924January 3, 2014 at 9:40 am in reply to: AddThis Facebook icon doesn't grab proper text or photo. #204923Hi jgdoyle1!
Please try to edit header.php, find this code:
<meta charset="<?php bloginfo( 'charset' ); ?>" />
Below, add this code:
<meta name="description" content="<?php echo get_the_excerpt(); ?>" /> <link rel="image_src" href="<?php echo avia_image_by_id(get_post_thumbnail_id(), 'large', 'url'); ?>" />
Make sure that you set a featured image on every post or page. Modify the excerpt using the Excerpt metabox. Enable it on Screen Options then tick the Excerpt.
Regards,
IsmaelJanuary 3, 2014 at 9:02 am in reply to: Have easyslider fill up entire column with no padding or margins #204918Hi!
You can replace the code on slideshow.php, line 484:
if(trim($title) != "") $title = "<h2 class='avia-caption-title' $markup_name>".trim(apply_filters('avf_slideshow_title', $title))."</h2>";
Replace it with:
if(trim($title) != "") $title = trim(apply_filters('avf_slideshow_title', $title));
Edit each images on the Easy Slider element then manually add the h1 or h2 tag as the caption title. Include the “avia-caption-title” selector to retain the styling.
<h1 class="avia-caption-title">This is a title.</h1>
If you want it to be h2. Just add a caption title like this:
<h2 class="avia-caption-title">This is a title.</h2>
Cheers!
IsmaelHey!
Please try to add this on the child theme’s functions.php:
add_filter('avf_title_args', 'alter_single_post_title', 10, 2); function alter_single_post_title($args,$id) { if (is_single()) { $args['title'] = ucfirst(get_post_type($id)); $args['link'] = get_permalink($id); } return $args; }
Best regards,
IsmaelHi Scott!
Please add this on your custom.css or Quick CSS:
.small-preview img { width: 100%; height: 100%; }
Regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/
Regards,
IsmaelHey!
Please download the latest version of the theme, Enfold 2.4.4. Update the theme via FTP. Please watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750
On wp-config.php file, please add this code at the very bottom:
define('WP_MEMORY_LIMIT', '256M');
Please post the login details here as a private reply. We would like to inspect it.
Best regards,
IsmaelHi pc37075!
1.) Can you please post a screenshot of Color Section bug? Please elaborate the issue.
2.) Use this on your custom.css or Quick CSS to adjust the height of the social icons:
#text-10 .size-full { width: 40px; }
Cheers!
IsmaelHi JMH_International!
It should be visible for all pages. Can you please give us a link to the page without the scroll to top button? Please add this on your custom.css or Quick CSS to enable the button on mobile devices:
@media only screen and (min-width: 480px) and (max-width: 767px) { .responsive #scroll-top-link{display: block;} /*iphones etc scroll better by tapping the status bar at the top of the screen*/ }
Regards,
IsmaelJanuary 3, 2014 at 8:21 am in reply to: Images appearing on top of menu (instead of underneath) when scrolling the page? #204912Hi!
1.) Let’s start again. To make the header transparent, please add this code:
.header_color .header_bg { background: rgba(0,0,0,.5); }
Move the slider or the main div towards the top using this:
.fixed_header .home #main { padding-top: 0; }
Edit js > avia.js file to remove the gap below the fullscreen slider. Find this code on line 687:
slide_height = Math.ceil( (viewport / 100) * this.options.height );
Replace it with:
slide_height = Math.ceil( (viewport / 100 ) * this.options.height ) + 88;
2.) You can’t move the border because it is the content border. There is a javascript where you can force or copy the height of a certain div then apply it on another. You can then use this Quick CSS:
#top #main .sidebar { right: -50px; border-left-style: solid; border-left-width: 1px; } .content { border: none; }
Please hire a freelance developer to help you create a script like that.
Cheers!
IsmaelHey!
I can’t check this on iOS device but have you tried removing the browser cache? I’ll ask Devin and Josue to check this out on their MAC system.
Cheers!
IsmaelHi!
Can you please give us a link to the website? The social icons should be on top of the logo on mobile view. What do you mean by “contact call”?
Best regards,
IsmaelHi!
Please download the latest version of Enfold which 2.4.4. Update the theme via FTP. If you have a cache plugin, please flush the settings. Remove browser cache then reload the page.
Cheers!
IsmaelJanuary 3, 2014 at 5:49 am in reply to: Images appearing on top of menu (instead of underneath) when scrolling the page? #204891Hi!
1.) Please add this on your custom.css or Quick CSS:
.fixed_header #main { padding-top: 100px; }
2.) You can move the sidebar to the right using this:
#top #main .sidebar { right: -50px; border: none; }
Cheers!
IsmaelJanuary 3, 2014 at 5:35 am in reply to: Wrong image showing on website only when I log out of WP admin #204884Hi!
Do you have a cache plugin? Please deactivate it along with other plugins. Please give us a link to the page.
Cheers!
IsmaelHi!
The login credentials are not working. Please check all pages with the Content Slider element. Recreate them from scratch.
Cheers!
IsmaelJanuary 3, 2014 at 4:14 am in reply to: Enfold: Add light gray background to each blog post on the blog grid layout. #204857Hi tck!
You can add this on your custom.css or Quick CSS:
.avia-content-slider .slide-entry { background: gray; padding: 10px; }
Best regards,
IsmaelHi!
I’m not sure but I think it is a browser feature. Please try it on firefox and you won’t encounter any predictive search.
Best regards,
IsmaelHi!
This is included as a side note with the Video element:
Attention when using self hosted HTML 5 Videos:
Different Browsers support different file types (mp4, ogv, webm). If you embed a example.mp4 video the video player will automatically check if a example.ogv and example.webm video is available and display those versions in case its possible and necessary.What is the format of the video?
Regards,
IsmaelHi!
Did you add any div tags? Please check the html markup if there are any unclosed tags. Kriesi tested a website once and he found out there are multiple tags that are not closed properly.
Regards,
IsmaelHi!
You can add this on your Quick CSS or custom.css to position the socket or footer at the bottom:
#socket { position: fixed; width: 100%; bottom: 0; } #socket .container { margin: 0 auto; }
Regards,
IsmaelHi!
Please hire a freelance developer to edit the file for you. Please refer to this link for more info about FTP and accessing files through cpanel.
http://www.siteground.com/tutorials/ftp/
http://www.siteground.com/tutorials/cpanel/file_manager.htmRegards,
IsmaelHey MUNFORD!
Add the two social icons align them to the left then add this on your Quick CSS to move to the center.
.av_font_icon { position: relative; left: 40%; }
Adjust the left position. If you want to change the style of a specific element on a certain page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.
On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.
.page-id-2251 .av_font_icon { position: relative; left: 40%; }
Best regards,
IsmaelHi!
Please check Settings > Discussion > Avatar Display, make sure that the “Show Avatars” option is ticked.
Regards,
IsmaelJanuary 2, 2014 at 5:38 am in reply to: Image resize problem in IE and FF, Chrome looks fine #204410Hi!
You can’t insert a column inside a column. It is possible if you use the Default Editor and the shortcode wand. You can insert column shortcodes inside a columns shortcode. Something like this:
[av_two_third first] [av_one_half first]Add Content here[/av_one_half] [av_one_half]Add Content here[/av_one_half] [/av_two_third] [av_one_third] [av_one_half first]Add Content here[/av_one_half] [av_one_half]Add Content here[/av_one_half] [/av_one_third]
Regards,
Ismael -
AuthorPosts