littleracer1
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Testimonial Box Background and TrasnparencyI tried posting this under the optiosn for my theme. There is a section called “Custom CCS” but it didnt work. Im doing something wrong… not sure what… ??
.hb-testimonial {
padding: 20px;
border: 1px solid #E1E1E1;
background: rgba(62,188,74,0.5);
border-radius: 3px;
margin-bottom: 20px;
position: relative;
}Forum: Fixing WordPress
In reply to: Testimonial Box Background and TrasnparencyTx for reply! Can you clarify exactly where I make this change? I would like to change one testimonial page on a page with a few. The one I want to change is on top of a full width section. Here is the code I found for it when I select “Edit Page”:
[fullwidth_section background_type=”image” text_color=”dark” image=”3776″ parallax=”yes” padding_top=”150″ padding_bottom=”150″][testimonial_box type=”normal” count=”1″ category=”christel-allen” columns=”1″ orderby=”date” order=”DESC”][/fullwidth_section][/vc_column][/vc_row]
Can I add something here to directly change background for “Christel Allen’s testimonial? Here is my page to see what I’m referring to: https://www.miamimxparksupport.com/?page_id=1970
When I open Editor I don’t see code which would indiciate I could change there….
Here is the code in Editor:
<?php
function hb_testimonial_box ( $post_id ) {
$testimonial_post = get_post($post_id);
if ( $testimonial_post ) {
setup_postdata($testimonial_post);
?>
<div class=”hb-testimonial”>
<?php the_content(); ?>
</div><?php
$author_image = vp_metabox(‘testimonial_type_settings.hb_testimonial_author_image’);
$author_name = vp_metabox(‘testimonial_type_settings.hb_testimonial_author’);
$author_desc = vp_metabox(‘testimonial_type_settings.hb_testimonial_description’);
$author_desc_link = vp_metabox(‘testimonial_type_settings.hb_testimonial_description_link’);if ( $author_image ) {
$author_image = hb_resize(null, $author_image, 60, 60, true ); ?>
<img src=”<?php echo $author_image[‘url’]; ?>” width=”60″ height=”60″ class=”testimonial-author-img”/>
<?php } ?><?php if ( $author_name || $author_desc ) { ?>
<div class=”testimonial-author”>
<?php if ( $author_name ) { ?>
<h5 class=”testimonial-author-name”>
<?php echo $author_name; ?>
</h5>
<?php } ?><?php if ( $author_desc && $author_desc_link ) { ?>
” class=”testimonial-company”><?php echo $author_desc; ?>
<?php } else if ( $author_desc ) { ?>
<?php echo $author_desc; ?>
<?php } ?>
</div>
<?php }
wp_reset_postdata();
}
}
?>Forum: Fixing WordPress
In reply to: Team Member option how do I remove link "view profile"ok, awesome. Thank you. This is very helpful
Forum: Fixing WordPress
In reply to: Team Member option how do I remove link "view profile"I’m using the hb-theme “highend.” My URL is: https://www.miamimxparksupport.com/?page_id=1869
If you scroll to bottom you’ll see “view profile” links under gallary carasoul.
I am not certain what provides option
Thank you for help!