Forum Replies Created
-
AuthorPosts
-
June 10, 2015 at 7:18 pm in reply to: WP FullCalendar plugin displays thin vertical line again #457475
I updated the Enfold theme to the latest version which is 3.2 and also updated WordPress to the latest version which is 4.2.2 and the display issue remains.
June 9, 2015 at 5:42 am in reply to: WP FullCalendar plugin displays thin vertical line again #456432This reply has been marked as private.June 7, 2015 at 7:09 am in reply to: WP FullCalendar plugin displays thin vertical line again #455587UPDATE
I found another post online about this same issue with another theme. See link below.
http://eventespresso.com/topic/ee4-calendar-bug/So, in the parent theme’s base.css file I experimented by commenting out the max-width declarations (max-width:100%; max-width:none\9;) in the #Links first declaration block and then tested it out and the thin lines problem became corrected.
/* #Links
================================================== */
a { text-decoration: none; outline: 0; /* max-width:100%; max-width:none\9; */ }
a:hover, a:focus, a:visited { outline: 0; text-decoration: underline;}
p a, p a:visited { line-height: inherit; }
a.avianolink, .avianolink a{cursor: default;}
#top .avia_hidden_link_text{display: none;}Then, I undid my changes to the parent theme’s base.css file and tried adding the following CSS declaration block to my custom style.css file in the child theme and the result was the same with the thin lines problem becoming corrected.
a.fc-event {
max-width: none !important;
}Now I just need to find out how to resolve the issue with the Prev/Next month buttons not showing up and the drop-down selector for the event categories not working. Any ideas on those issues?
One last link worth looking at. The WP Calendar plugin developer mentioned, “we’re using the FullCalendar library which makes use of jQuery’s ThemeRoller CSS.” See link below and look at last comment by developer.
https://wordpress.org/support/topic/events-showing-up-as-thin-gray-linesJune 6, 2015 at 11:27 pm in reply to: WP FullCalendar plugin displays thin vertical line again #455538Hi Ismael,
Thanks for the suggested CSS fix.
That only partially worked when viewed on computer screen sizes. The top of the calendar still has no option to move to the prev/next month (arrows left and right) and the drop-down selector for categories is missing.
SEE SCREENSHOT LINK COMPARING VERSION 0.9 WITH CSS FIX YOU SUGGESTED ON TOP AND VERSION 0.8.4 WHICH DISPLAYS FINE ON BOTTOM
https://www.dropbox.com/s/ajqgnmg48qtb8qs/calendar-month-min-width-fix-comparison-dropbox.jpg?raw=1Also, Day view mode cuts off details with CSS min-width:109px fix
SCREENSHOT LINK
https://www.dropbox.com/s/zh8svnk897jbe2s/wp-fullcalendar-linesfix-dayviewissue.jpg?raw=1Now, on Mobile device screens, such as the iPhone, the min-width:109px CSS fix makes the boxes too wide and causes overlapping.
SCREENSHOT LINK
https://www.dropbox.com/s/8916g31l3ag0u32/iphone-screenshot-min-width-fix.jpg?raw=1June 5, 2015 at 9:33 am in reply to: WP FullCalendar plugin displays thin vertical line again #455012SCREENSHOT OF PREVIOUS PLUGIN VERSION AFTER CSS FIX WAS APPLIED
NO DISPLAY PROBLEMS
WP FullCalendar Plugin – Version 0.8.4
https://www.dropbox.com/s/b7qrw2vip7owry4/wp-fullcalendar-no-lines-monthview.jpg?raw=1SCREENSHOT OF LATEST VERSION OF PLUGIN WITH DISPLAY ISSUES
THIN VERTICAL LINES APPEARS ON DAYS INSTEAD OF EVENT TITLES AND DESCRIPTIONS
WP FullCalendar Plugin – Version 0.9
https://www.dropbox.com/s/n2sh97cjnlv9nk2/wp-fullcalendar-lines-monthview.jpg?raw=1June 3, 2015 at 7:32 pm in reply to: WP FullCalendar plugin displays thin vertical line again #454026This reply has been marked as private.May 21, 2015 at 2:37 am in reply to: Color Section Parallax Background Image iPad and iPhone 6 Problems #447495Yup, you are right. When I tested the new CSS code without #hero-bg-mobile all the parallax background images ended up being the same image as the first color section one.
So the final modified CSS code you provided works perfectly. Thanks!
.avia_mobile #hero-bg-mobile .av-parallax {
background-image: url(http://acme.com/wp-content/uploads/2014/07/parallaxbackgroundimage.jpg)!important;
height: 100% !important;
}May 20, 2015 at 10:07 pm in reply to: Color Section Parallax Background Image iPad and iPhone 6 Problems #447442Okay. So you mean I can replace all of this…
@media only screen
and (min-device-width: 320px)
and (max-device-width: 568px)
{
#hero-bg-mobile .av-parallax {
background-image: url(http://acme.com/wp-content/uploads/2014/07/parallaxbackgroundimage.jpg)!important;
}
.av-parallax {
height: 100% !important;
}
}@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (-webkit-min-device-pixel-ratio: 1)
{
#hero-bg-mobile .av-parallax {
background-image: url(http://acme.com/wp-content/uploads/2014/07/parallaxbackgroundimage.jpg)!important;
}
.av-parallax {
height: 100% !important;
}
}…with just this, adding in my own background image reference?
.avia_mobile .av-parallax {
background-image: url(http://acme.com/wp-content/uploads/2014/07/parallaxbackgroundimage.jpg)!important;
height: 100% !important;
}May 20, 2015 at 6:13 pm in reply to: Color Section Parallax Background Image iPad and iPhone 6 Problems #447348Thanks Josue. Your suggested fix seems to have resolved the issue on the iPhone and iPad.
.av-parallax {
height: 100% !important;
}But, I had to apply the suggested fix only to mobile screen sizes in my custom CSS (child theme style.css file) because the suggested fix by itself caused issue with the parallax background image positioning, etc. when viewed on computer browser screen sizes.
So below is what I added to my custom CSS (child theme style.css file) and all seems fine now.
@media only screen
and (min-device-width: 320px)
and (max-device-width: 568px)
{
#hero-bg-mobile .av-parallax {
background-image: url(http://acme.com/wp-content/uploads/2014/07/parallaxbackgroundimage.jpg)!important;
}
.av-parallax {
height: 100% !important;
}
}@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (-webkit-min-device-pixel-ratio: 1)
{
#hero-bg-mobile .av-parallax {
background-image: url(http://acme.com/wp-content/uploads/2014/07/parallaxbackgroundimage.jpg)!important;
}
.av-parallax {
height: 100% !important;
}
}Thanks again for your help with this!
- This reply was modified 9 years, 8 months ago by killyman.
May 18, 2015 at 7:16 pm in reply to: Color Section Parallax Background Image iPad and iPhone 6 Problems #445966This reply has been marked as private.May 18, 2015 at 6:53 pm in reply to: Color Section Parallax Background Image iPad and iPhone 6 Problems #445952This reply has been marked as private.May 18, 2015 at 5:05 pm in reply to: Color Section Parallax Background Image iPad and iPhone 6 Problems #445838I started a new topic hoping this time someone will respond. Seems like the fix shouldn’t be too hard to come up with. All CSS, right?
https://kriesi.at/support/topic/color-section-parallax-background-image-iphone-and-ipad-issues/
Hi Luke,
I’m having no luck getting any response from the support forum moderators regarding my issue. See link below
https://kriesi.at/support/topic/color-section-parallax-background-image-ipad-and-iphone-6-problems/Just wondering if your issue was resolved with the theme update to 3.1.5. Seems like my problem is because of the theme update. The issue I’m having doesn’t present itself with an older theme version I have on another test server.
Killyman
May 15, 2015 at 6:04 pm in reply to: Color Section Parallax Background Image iPad and iPhone 6 Problems #445097I really would appreciate some kind of response from the support staff. Otherwise I may need to abandon this theme and look elsewhere. My client is getting impatient waiting for the site to be completed.
May 13, 2015 at 4:50 pm in reply to: Color Section Parallax Background Image iPad and iPhone 6 Problems #443827Can I get some feedback please?
May 11, 2015 at 3:55 am in reply to: Color Section Parallax Background Image iPad and iPhone 6 Problems #442178Anyone else having this issue? Any feedback or suggestions to fix the issue would be much appreciated.
May 9, 2015 at 2:28 pm in reply to: Color Section Parallax Background Image iPad and iPhone 6 Problems #441948I know you guys are busy dealing with so many support requests at once, but any insight on fixing this issue would be much appreciated. Thanks.
May 7, 2015 at 5:24 pm in reply to: Color Section Parallax Background Image iPad and iPhone 6 Problems #441107UPDATE
I originally stated there was no issue viewing the color section parallax background image on the site with the Enfold version 3.1.5 theme on an iPad mini, but now I’ve discovered that the same issue is happening on the iPad mini if it has the IOS 8.0 software. Another older iPad mini with IOS 6.0 I tested the site on earlier does not have any issues.
So now I’m seeing a two-fold problem. The color section background parallax image having the background position always set to bottom and the image always being blown up occurs on any IOS device with IOS 8.0 (haven’t tested IOS 7.0) in combination with viewing a site with the Enfold theme version 3.1.5.
For Enfold theme version 3.0.8 all IOS devices with the two versions of IOS software I’ve tested (6.0 and 8.0) view the parallax background image correctly in terms of size and positioning.
I’d appreciate any fixes for this issue.
I think I’m having a similar issue as Luke. I’ve posted my issue here.
https://kriesi.at/support/topic/color-section-parallax-background-image-ipad-and-iphone-6-problems/
Could it be a problem with theme versions as I mention in my support topic post?
July 26, 2014 at 8:09 am in reply to: Events Manager Single Event Page Title using Blog "News" header title #296169Thanks Peter!
July 15, 2014 at 3:32 pm in reply to: Events Manager Single Event Page Title using Blog "News" header title #291622Thanks again so much!
One last question. The left and right margins/padding on the news (blog) single post page is much greater than on the events (calendar) single event page. Is this greater margin/padding setting for blog posts default on the Enfold theme?
If I wanted to make the news (blog) single post pages’ left and right margins/padding percentage match the current events single post page margins/padding, what CSS would I need to add or modify?
Thanks.
July 10, 2014 at 5:41 pm in reply to: Events Manager Single Event Page Title using Blog "News" header title #289641Thanks so much again Mayorninja! Thanks Ismael as well.
For the social media sharing footer should I use one over the other or both? See below.
FROM MAYORNINJA #######################
#top.single-event .fullsize .template-blog .post_delimiter {
visibility: hidden;
}FROM ISMAEL #######################
footer.entry-footer {
z-index: 1000;
position: relative;
}July 9, 2014 at 4:43 pm in reply to: Events Manager Single Event Page Title using Blog "News" header title #289084Additional Info for reference purposes. Below is a link to a News (Blog) post page with the “Share this entry” social media icons at the bottom in their correct working format.
http://www.everythingisforever.com/cms/nenad-distinguished-artist-of-the-beaux-arts-society/
July 9, 2014 at 4:28 pm in reply to: Events Manager Single Event Page Title using Blog "News" header title #289076Thanks MayorNinja! That did the trick.
Now there are just 2 remaining mods/fixes I’d like to accomplish.
META INFO
On the event page itself just below the title of the event I’d like to remove or hide the meta info related to the “date” and “author” but don’t want to affect that same meta info that appears on News (Blog) post pages.SOCIAL MEDIA SHARING FEATURE
On the bottom of the event page the option to “Share this entry” appears but the mouse-over hotspots for each social media item is off for some reason. One has to position the mouse pointer toward the top of each box in order to activate the hover-over effect and click on the link.Any help with these two remaining mods/fixes would be much appreciated.
Here is a link to the page I’m referring to again.
http://www.everythingisforever.com/cms/screenings/5th-starigrad-paklenica-film-festival/Thanks.
July 7, 2014 at 7:28 am in reply to: Events Manager Single Event Page Title using Blog "News" header title #287851This reply has been marked as private.July 6, 2014 at 5:27 pm in reply to: Events Manager Single Event Page Title using Blog "News" header title #287729I put the updated code in my child theme’s functions.php file and still no change. Is there something I’m supposed to be modifying in the single-event.php file I created in my child theme folder?
single-even.php file contents follow…
<?php
global $avia_config;/*
* get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
*/
get_header();$title = __(‘Blog – Latest News’, ‘avia_framework’); //default blog title
$t_link = home_url(‘/’);
$t_sub = “”;if(avia_get_option(‘frontpage’) && $new = avia_get_option(‘blogpage’))
{
$title = get_the_title($new); //if the blog is attached to a page use this title
$t_link = get_permalink($new);
$t_sub = avia_post_meta($new, ‘subtitle’);
}if( get_post_meta(get_the_ID(), ‘header’, true) != ‘no’) echo avia_title(array(‘heading’=>’strong’, ‘title’ => $title, ‘link’ => $t_link, ‘subtitle’ => $t_sub));
?>
<div class=’container_wrap container_wrap_first main_color <?php avia_layout_class( ‘main’ ); ?>’>
<div class=’container template-blog template-single-blog ‘>
<main class=’content units <?php avia_layout_class( ‘content’ ); ?> <?php echo avia_blog_class_string(); ?>’ <?php avia_markup_helper(array(‘context’ => ‘content’,’post_type’=>’post’));?>>
<?php
/* Run the loop to output the posts.
* If you want to overload this in a child theme then include a file
* called loop-index.php and that will be used instead.
*
*/get_template_part( ‘includes/loop’, ‘index’ );
//show related posts based on tags if there are any
get_template_part( ‘includes/related-posts’);//wordpress function that loads the comments template “comments.php”
comments_template( ‘/includes/comments.php’);?>
<!–end content–>
</main><?php
$avia_config[‘currently_viewing’] = “blog”;
//get the sidebar
get_sidebar();?>
</div><!–end container–>
</div><!– close default .container_wrap element –>
<?php get_footer(); ?>
July 6, 2014 at 4:34 am in reply to: Events Manager Single Event Page Title using Blog "News" header title #287630Hi Ismael,
Please check again now.
http://www.everythingisforever.com/cms/screenings/sounds-of-summer-new-music-documentaries-2014/
ClarkJuly 5, 2014 at 4:53 pm in reply to: Events Manager Single Event Page Title using Blog "News" header title #287525Hi. Just checking in to see if you have any feedback for me. Thanks.
Great. Works now. Thanks.
July 4, 2014 at 8:31 am in reply to: Events Manager Single Event Page Title using Blog "News" header title #287062This reply has been marked as private. -
AuthorPosts