Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle
Search Results for 'Page'
-
AuthorSearch Results
-
In forum: Virtue Theme
Topic: Testimonial Widget
Hi Team!
I am trying to set up a virtue testimonial carousel on my home page and would like to edit the CSS on the appearance.
You can see the active element live right now here: *Login to see linkI would like to:
1. remove the person/avatar thumbnail
2. remove the word bubble
3. change the font size (eg.25px) and colour (eg.white), make the writing in italics
4. change the colour of the name by whom the testimonial is written
5. perhaps remove the “Testimonial” headingI am using the siteOrigin builder to create the widget,
where would I place the necessary code update?Thank you!
In forum: Virtue ThemeHi,
I’m looking to add captions to the images in my carousel when people hover over them. I’ve added the information in the media library and to each image under Theme Options>Home Slider, but it’s not showing up?
Thanks
In forum: Virtue ThemeIn reply to: Add Content to Blog Front Page
May 25, 2016 at 9:18 am #96487Are you wanting pagination for this or are you just wanting to show a certain amount of posts on the home page?
Ben
In forum: Virtue ThemeIn reply to: Formatting Question – Blog Page Layout
Ben, I updated the theme, and while the blog posts shortcode now does work and show the excerpts (not the full post, yay!) it is not formatting correctly. I have my blog posts covering just about the full width of the page. (One column in page builder covering 100%, except of course the sidebar.) Yet, when I use the shortcode, the width of the post excerpts are reduced – about half the width of my actual column, and when I place them one on top of the other (shortcode on top of post loop widget) you can see the shortcode isn’t the same width (even nearly) to the post loop widget. In summary, it’s still not working like it used to and I’m still stuck using the post look widget which just isn’t the same. The shortcode still has issues. Please fix! Appreciated, -Dan
In forum: Virtue ThemeIn reply to: Portfolio page values above description
In forum: Virtue ThemeIn reply to: Removing Latest Posts and Comments
In forum: Virtue ThemeIn reply to: Category Pictures Scale
In forum: Pinnacle ThemeIn reply to: how to make items equal size
In forum: Virtue ThemeIn reply to: Removing Latest Posts and Comments
In forum: Virtue ThemeTopic: Logo is under the slider.
In forum: Virtue ThemeTopic: text over feature image
Hi Guys
I want to have text over an image, so I used page builder and placed the image in the background of the row, with a text widget on top.But it doesn’t resize on mobile. What’s a better solution for this effect?
Thanks very much-
CarrieIn forum: Virtue ThemeHello,
I like the way the “Blog” template looks when I set it up as my home page. However, I would like to be able to add some content before and/or after the blog posts.I have tried a number of things, including using a Static Page and adding the latest posts; using Page builder, using shortcodes, and more. However, it always formats differently no matter what I’ve tried. I can’t seem to get the nice one column, centered, with an image the way it is on the blog page. I can provide a link to my site in progress if that would be helpful.
I am using a child of Virtue Premium. I have made no coding or css changes.
Thank you.
In forum: Pinnacle ThemeTopic: Problem with staff shortcode
Hello,
I am using the staff shortcode in the page below. You will notice not all the staff members are showing their social buttons, and that some staff members “read more” link is pointing back at the staff page, not the staff member page.
I am also having problems with the order. I set a menu order for the staff members but it isn’t being followed exactly.
Any help is appreciated.
In forum: Virtue ThemeTopic: Virtue Split Content Widget
Inserting the Split Content Widget on Page Builder, the text alignment is different on PC rendering vs. Mobile. The text body alignment is set to “justify”, but for some reason the mobile version is doing “Center”
Link is *Login to see link
What am I missing here?
Thanks
In forum: Virtue ThemeIn reply to: Removing Latest Posts and Comments
Hi Edwin,
You can use a fullwidth page template which will remove the sidebar.
You can use css to center your page title. Just paste this into your custom css box in Theme Options > Advanced Settings:.page-header h1 { text-align: center; }Hope that helps!
Hannah
In forum: Virtue ThemeIn forum: Virtue ThemeIn reply to: Error when changing theme settings
May 24, 2016 at 7:27 pm #96419Okay, apparently I spoke too soon. I’m getting the error message sometimes, but I was able to save one change. I’m trying to edit the links on the homepage slider, and I was able to remove an outdated link but am not able to save the new link.
In forum: Virtue ThemeIn reply to: Portfolio Filter Html errors
May 24, 2016 at 5:54 pm #96400The validator doesn’t like that rel is used to to define which filter class to target. It’s not an error that would cause any kind of bad effect in any browser. It’s the same as your m_PageScroll2id plugin. You can ignore.
Ben
In forum: Virtue ThemeIn reply to: Cloning edit post screen into CPT
May 24, 2016 at 5:36 pm #96397Yeah you would just add this to the above:
$meta_boxes[] = array( 'id' => 'post_metabox', 'title' => __("Post Options", 'virtue'), 'pages' => array( 'post',), // Post type 'context' => 'normal', 'priority' => 'high', 'show_names' => true, // Show field names on the left 'fields' => array( array( 'name' => __('Display Sidebar?', 'virtue'), 'desc' => __('Choose if layout is fullwidth or sidebar', 'virtue'), 'id' => $prefix . 'post_sidebar', 'type' => 'select', 'options' => array( array( 'name' => __('Default', 'virtue'), 'value' => 'default', ), array( 'name' => __('Yes', 'virtue'), 'value' => 'yes', ), array( 'name' => __('No', 'virtue'), 'value' => 'no', ), ), ), array( 'name' => __('Choose Sidebar', 'virtue'), 'desc' => '', 'id' => $prefix . 'sidebar_choice', 'type' => 'imag_select_sidebars', ), array( 'name' => __('Author Info', 'virtue'), 'desc' => __('Display an author info box?', 'virtue'), 'id' => $prefix . 'blog_author', 'type' => 'select', 'options' => array( array( 'name' => __('Default', 'virtue'), 'value' => 'default', ), array( 'name' => __('No', 'virtue'), 'value' => 'no', ), array( 'name' => __('Yes', 'virtue'), 'value' => 'yes', ), ), ), array( 'name' => __('Posts Carousel', 'virtue'), 'desc' => __('Display a carousel with similar or recent posts?', 'virtue'), 'id' => $prefix . 'blog_carousel_similar', 'type' => 'select', 'options' => array( array( 'name' => __('Default', 'virtue'), 'value' => 'default', ), array( 'name' => __('No', 'virtue'), 'value' => 'no', ), array( 'name' => __('Yes - Display Recent Posts', 'virtue'), 'value' => 'recent', ), array( 'name' => __('Yes - Display Similar Posts', 'virtue'), 'value' => 'similar', ) ), ), array( 'name' => __('Carousel Title', 'virtue'), 'desc' => __('ex. Similar Posts', 'virtue'), 'id' => $prefix . 'blog_carousel_title', 'type' => 'text_medium', ), ), );Right before:
return $meta_boxes;Ben
In forum: Virtue ThemeTopic: Radom Revolution Slider
-
AuthorSearch Results


