hckyman96
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Appointment] Mobile SliderI was able to fix it with some info from another post. To do this I added the below to the custom css:
@media only screen and (max-width: 480px) and (min-width: 200px) { .contact-area h4 { font-size: 14px; } .contact-area h6 { font-size: 16px; } .carousel-inner > .item > img, .carousel-inner > .item > a > img { height: 200px !important; }
Thanks for the responsivechecker link. That will come in handy in the future.
Forum: Themes and Templates
In reply to: [Appointment] Mobile Slidermy url is https://e14.454.myftpupload.com/
Here is a screenshot of what I see on my phone. It’s a samsung galaxy s6.
[IMG]https://i67.tinypic.com/5xub00.png[/IMG]
Forum: Plugins
In reply to: [Contact Form 7] Cannot see form in footerYes, I added the shortcode to a text widget and all I see is the send button. None of the text fields are showing but the same form shows perfectly when used on a page.
I added the above text into my functions.php but nothing changed.
Forum: Themes and Templates
In reply to: [Glow] Menu on mobilehttps://michelangelosalonandspa.com/wp/
Forum: Themes and Templates
In reply to: [Pure & Simple] Duplicate Banner WidgetThanks for the response. I was able to add another image below but it is not full width. Is there any way to get a full width image in any of the areas below the banner?
Amaclean23- I think you need to set a featured image for that post. From your dashboard, go to edit the post and at the bottom right of the page, you should see a box to set your featured image. Add an image and it should then work.
I found a solution:
I reverted modality-image-sliders.php back to the previous version and it is working.
Go to Apperance – Editor – modality-image-sliders.php and replace all of the text with this: (PLEASE BACK UP YOUR image-sliders.php FIRST IN CASE YOU WANT TO GO BACK TO THE WAY IT WAS)
<?php
/**
* Modality functions and definitions
*
* @package Modality
*/function modality_slider() {
global $post;
$modality_theme_options = modality_get_options( ‘modality_theme_options’ );
$slider_cat = $modality_theme_options[‘image_slider_cat’];
$num_of_slides = $modality_theme_options[‘slider_num’];
$button_text = $modality_theme_options[‘caption_button_text’];$modality_slider_query = new WP_Query(
array(
‘posts_per_page’ => $num_of_slides,
‘cat’ => $slider_cat
)
);?>
<div class=”clear”></div>
<div class=”banner”>-
<?php while ( $modality_slider_query->have_posts() ): $modality_slider_query->the_post(); ?>
<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), ‘single-post-thumbnail’ ); ?>
<li style=”background: url(<?php echo esc_url($image[0]); ?>) 50% 0 no-repeat fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;”>
<?php if ($modality_theme_options[‘captions_on’] == ‘1’) { ?>
<div class=”inner”>
“><h1><?php the_title(); ?></h1>
<?php the_excerpt(); ?>
</div>
<?php if ($modality_theme_options[‘captions_button’] == ‘1’) { ?>
” class=”btn”><?php echo $button_text ?>
<?php }; ?>
<?php }; ?><?php endwhile; wp_reset_query(); ?>
</div>
<div class=”clear”></div><?php
}function modality_localize_scripts(){
wp_enqueue_script( ‘slides’, get_template_directory_uri() .’/js/slides.js’ , array( ‘jquery’ ), ”, true );
$modality_theme_options = modality_get_options( ‘modality_theme_options’ );
$animation_speed = $modality_theme_options[‘animation_speed’];
$slideshow_speed = $modality_theme_options[‘slideshow_speed’];
$datatoBePassed = array(
‘slideshowSpeed’ => $slideshow_speed,
‘animationSpeed’ => $animation_speed,
);
wp_localize_script( ‘slides’, ‘php_vars’, $datatoBePassed );
}add_action( ‘wp_enqueue_scripts’, ‘modality_localize_scripts’ );
Forum: Themes and Templates
In reply to: [Guardian] Header areaIt looks great on desktop but on mobile, the logo is covering the email address. Is there a way to move the email address down on mobile only?
Thanks again
Forum: Themes and Templates
In reply to: [Guardian] Header areaPerfect! Thank you!
Forum: Themes and Templates
In reply to: [Guardian] Header areaI created a child theme and entered the code from the above link into header.php but nothing has changed. The header looks the same as it has.
Forum: Themes and Templates
In reply to: [Guardian] Header areathe url is vincentigneri.com/wordpress
before I center the header, I would really like to have my logo be even with the menu bar so there is not so much white space at the top. If it can fit in the area where the guardian logo is in the original theme, that would be perfect.
I put the logo in the header image section. When I load the logo into the theme option section, it disappears, even when I change the size.
Thanks again for your help
Forum: Themes and Templates
In reply to: [Guardian] How to change text color in "about guardian" sectionThat worked! Thank you.
Forum: Themes and Templates
In reply to: [Guardian] How to change text color in "about guardian" sectionAlso, is there a way to change the color of the dashed line that’s right above it? Thanks again.