Forum Replies Created

Viewing 15 posts - 91 through 105 (of 7,425 total)
  • Posted in:
  • in reply to: Recent Blog Posts Problem #99878
    Melanie – SUPPORT
    Member
    Post count: 11032

    Then there is none I’m afraid! 🙂

    in reply to: Varieties box #99876
    Melanie – SUPPORT
    Member
    Post count: 11032

    Hi, care to post your website URL so we can take a look at what’s needed?

    Cheers!

    in reply to: Color Washed Out On Mobile #99873
    Melanie – SUPPORT
    Member
    Post count: 11032

    Hi!

    That can only be a problem of your mobile device, I’m afraid there’s nothing we can do to possibly change that!

    in reply to: Hide Thumbnail Photo on Blog Page #99870
    Melanie – SUPPORT
    Member
    Post count: 11032

    Hi, I’m not clear about where exactly you’d like to remove the images from. Can you post up a link ?

    in reply to: Column Align Problem / Tab's not working #99865
    Melanie – SUPPORT
    Member
    Post count: 11032

    Fantastic, you’re welcome!

    in reply to: Migration of Site Error #99862
    Melanie – SUPPORT
    Member
    Post count: 11032

    Hi,

    it sounds like maybe the aq_resizer.php file did not transfer successfully; could you check if the file is located at that path?

    Let us know please!

    in reply to: Question about the "suggestions" section in articles' blog #99858
    Melanie – SUPPORT
    Member
    Post count: 11032

    Hi DJ,

    did you set up categories for your posts so they can relate to each other by being in the same category?

    Thanks!

    in reply to: Footer Size #99855
    Melanie – SUPPORT
    Member
    Post count: 11032

    Hi,

    I don’t see any problem in your footer’s height and I don’t think you should reduce it, but here you go:

    #footer {
    padding-top: 0px;
    }
    #footer-widgets .widget {
    padding-bottom: 0px;
    }

    Let me know if that worked!

    in reply to: Change Related Projects font #99851
    Melanie – SUPPORT
    Member
    Post count: 11032

    Hi, so you want the styling of your “h2, .blog-item .quote-excerpt” to look like the h4?
    If you could post up your website URL and let us know exactly which element you’re referring to we can check it out for you!

    Also let us know the exact css you’re using!

    Another solution would be to go into the php file and changing the markup from h2 to h4.

    Thank you

    in reply to: Footer Size #99848
    Melanie – SUPPORT
    Member
    Post count: 11032

    Hi!

    Do you mean in height? If you could post up your website URL we can check your setup to see in which way we can improve it!

    Thank you

    in reply to: link in progress bar #99847
    Melanie – SUPPORT
    Member
    Post count: 11032

    Hi,

    in shortcodes.php find the code

    	/* SERVICES PROGRESS BAR SHORTCODE
    	================================================= */
    	
    	function sf_progress_bar($atts) {
    		extract(shortcode_atts(array(
    			"percentage" => '',
    			"name" => '',
    			"type" => '',
    			"value" => '',
    			"colour" => ''
    		), $atts));
    		
    		if ($type == "") { $type = "standard"; }
    		
    		$service_bar_output = '';
    		
    		$service_bar_output .= '<div class="progress-bar-wrap progress-'.$type.'">'. "\n";
    		if ($colour != "") {
    		$service_bar_output .= '<div class="bar-text"><span class="bar-name">'.$name.':</span> <span class="progress-value" style="color:'.$colour.'!important;">'.$value.'</span></div>'. "\n";
    		$service_bar_output .= '<div class="progress '.$type.'">'. "\n";
    		$service_bar_output .= '<div class="bar" data-value="'.$percentage.'" style="background-color:'.$colour.'!important;">'. "\n";
    		} else {
    		$service_bar_output .= '<div class="bar-text"><span class="bar-name">'.$name.':</span> <span class="progress-value">'.$value.'</span></div>'. "\n";
    		$service_bar_output .= '<div class="progress '.$type.'">'. "\n";
    		$service_bar_output .= '<div class="bar" data-value="'.$percentage.'">'. "\n";		
    		}
    		$service_bar_output .= '</div>'. "\n";
    		$service_bar_output .= '</div>'. "\n";
    		$service_bar_output .= '</div>'. "\n";
    		
    		global $sf_has_progress_bar;
    		$sf_has_progress_bar = true;
    		
    		return $service_bar_output;
    	}
    	
    	add_shortcode('progress_bar', 'sf_progress_bar');

    and replace it with

    	/* SERVICES PROGRESS BAR SHORTCODE
    	================================================= */
    	
    	function sf_progress_bar($atts) {
    		extract(shortcode_atts(array(
    			"percentage" => '',
    			"name" => '',
    			"type" => '',
    			"value" => '',
    			"colour" => '',
    			"link" => ''
    		), $atts));
    		
    		if ($type == "") { $type = "standard"; }
    		
    		$service_bar_output = '';
    		
    		$service_bar_output .= '<div class="progress-bar-wrap progress-'.$type.'">'. "\n";
    		if ($colour != "") {
    		$service_bar_output .= '<a href="'.$link.'"><div class="bar-text"><span class="bar-name">'.$name.':</span> <span class="progress-value" style="color:'.$colour.'!important;">'.$value.'</span></div>'. "\n";
    		$service_bar_output .= '<div class="progress '.$type.'">'. "\n";
    		$service_bar_output .= '<div class="bar" data-value="'.$percentage.'" style="background-color:'.$colour.'!important;">'. "\n";
    		} else {
    		$service_bar_output .= '<div class="bar-text"><span class="bar-name">'.$name.':</span> <span class="progress-value">'.$value.'</span></div>'. "\n";
    		$service_bar_output .= '<div class="progress '.$type.'">'. "\n";
    		$service_bar_output .= '<div class="bar" data-value="'.$percentage.'">'. "\n";		
    		}
    		$service_bar_output .= '</div>'. "\n";
    		$service_bar_output .= '</div></a>'. "\n";
    		$service_bar_output .= '</div>'. "\n";
    		
    		global $sf_has_progress_bar;
    		$sf_has_progress_bar = true;
    		
    		return $service_bar_output;
    	}
    	
    	add_shortcode('progress_bar', 'sf_progress_bar');

    This should leave you with the new attribute link=”…” to use within the shortcode!

    Let me know if it worked. If it didn’t work, please post up your website URL with the faulty code on it!

    in reply to: Smooth scroll #99837
    Melanie – SUPPORT
    Member
    Post count: 11032

    Hi!

    Could you post up your website URL so we can take a look?

    Thank you!

    in reply to: same settings for mobile devices and tablets #99276
    Melanie – SUPPORT
    Member
    Post count: 11032

    Hi, try adding an !important to each of the css to see if that catches on to mobile?

    Let me know!

    in reply to: Remove space between slider and footer #99268
    Melanie – SUPPORT
    Member
    Post count: 11032

    Hi Michael,

    you can remove it from that page with this custom css

    .page-id-12811 #page-wrap {
    display: none!important;
    }
    in reply to: Blog page not working #99267
    Melanie – SUPPORT
    Member
    Post count: 11032

    Hi, have you set the Noticias page to be your blog page in wp-admin > Settings > Reading?

    Thank you!

Viewing 15 posts - 91 through 105 (of 7,425 total)