-
Search Results
-
Topic: Color Section
How did the following web site listed below get there header image/ av_section 1 image to stretch the full size of the screen then overlay a special heading border?
http://www.platinumrealtyaustin.com/homes/
=======
<div id="av_section_1" class="avia-section main_color avia-section-default avia-no-shadow avia-full-stretch avia-builder-el-0 avia-builder-el-first container_wrap fullsize" style="background-repeat: no-repeat; background-image: url(/wp-content/uploads/2010/02/search-header.jpg); background-attachment: scroll; background-position: center center; "><div class="container"><div class="template-page content twelve alpha units"><div class="post-entry post-entry-type-page post-entry-230"><div class="entry-content clearfix"> <div style="padding-bottom:10px" class="av-special-heading avia-builder-el-1 avia-builder-el-no-sibling "><h1>Austin Real Estate Search</h1><div class="special-heading-border"><div class="special-heading-inner-border"></div></div></div> </div></div></div></div></div>Hi Guys,
Sorry, combining several posts back into one here as have additional questions relating to the Enfold Portfolio section.
1. Is there a portfolio scroller available? So can have many at the bottom of any page scrolling through not in grid format.
2. I can see this in some of your other themes but cannnot for the life of me in this one – the previous and next entry for the portfolio. Your other themes having it sit under everything, and was wondering if it was a. available in this theme and b. whether can move to top of page.
3. When click through to a portfolio item, the Portfolio in the menu bar at very top does not stay ‘activated’. Is that an easy fix?
4. I’d like to keep the border around the images and titles on the Porfolio main page, but struggling to remove what appears to be a shadow. Everything I do just removes it all.
For the below have used code inspectors, but cannot seem to get it correctly.
5. Where do I change the colour for the Avia Arrow, text and the background just in the Item Name. So it would be an orange arrow and orange text box with white text.
6. For the above is it possible for the arrow to change to blue and text box to blue on hover??
7. On a separate matter, please let me have the Big Numbers under your main page :). Been trying to find this as a plugin to replicate key figures we have from our hard copy brochure to no avail.
Thanks!!
Jas
Topic: Change hover image and icon
Hi there!
First of all, thank you for this awesome theme!
I would like to ask if there’s a way to change the image hover effect on the images of partner, logo element (the arrow icon) to display some text. I know you can add a caption that appears above the image but I would like it to display on top of the image (kind of like this one http://demo.udthemes.com/cartel/wordpress/
Is there any way to tweak the ajax hover effect?
Thanks!
Topic: Change hover image and icon
Hi there!
First of all, thank you for this awesome theme!
I would like to ask if there’s a way to change the image hover effect on the images of partner, logo element (the arrow icon) to display some text. I know you can add a caption that appears above the image but I would like it to display on top of the image (kind of like this one http://demo.udthemes.com/cartel/wordpress/
Is there any way to tweak the ajax hover effect?
Thanks!
Topic: Change hover image and icon
Hi there!
First of all, thank you for this awesome theme!
I would like to ask if there’s a way to change the image hover effect on the images of partner, logo element (the arrow icon) to display some text. I know you can add a caption that appears above the image but I would like it to display on top of the image (kind of like this one http://demo.udthemes.com/cartel/wordpress/
Is there any way to tweak the ajax hover effect?
Thanks!
Topic: Change hover image and icon
Hi there!
First of all, thank you for this awesome theme!
I would like to ask if there’s a way to change the image hover effect on the images of partner, logo element (the arrow icon) to display some text. I know you can add a caption that appears above the image but I would like it to display on top of the image (kind of like this one http://demo.udthemes.com/cartel/wordpress/)
Is there any way to tweak the ajax hover effect?
Thanks!
Topic: Change hover image
Hi there!
First of all, thank you for this awesome theme!
I would like to ask if there’s a way to change the image hover effect on the images of partner, logo element (the arrow icon) to display some text. I know you can add a caption that appears above the image but I would like it to display on top of the image (kind of like this one http://demo.udthemes.com/cartel/wordpress/)
Is there any way to tweak the ajax hover effect?
Thanks!
Hi,
I use the Template for a “One Page” site and there for it would be very helpful to have the ability to add “Anker nodes” or “Div with IDs” to the page.
Sadly there is no Shortcode Template for the “Avia Layout Builder” for that. This is why I started to create one my self. But I’m not able a full accomplish it.I need to know how I could avoid the additional Markup in the Frontend.
<main role="main" itemprop="mainContentOfPage" class="template-page content twelve alpha units"> <div class="post-entry post-entry-type-page post-entry-2251"> <div class="entry-content-wrapper clearfix"> <div id="myAnker" class="anker"><!-- <a name='myAnker' /> --></div> </div></div></main>As this Markup adds a lot of CSS (Margin, Padding), too.
I’ve created an Icon for it:

And I added the necessary PHP file:
<?php /** * Anker * Creates a div with "id" for an anker */ // Don't load directly if ( !defined('ABSPATH') ) { die('-1'); } if ( !class_exists( 'avia_sc_a_div' ) ) { class avia_sc_a_div extends aviaShortcodeTemplate{ /** * Create the config array for the shortcode button */ function shortcode_insert_button() { $this->config['name'] = __('Anker Div', 'avia_framework' ); $this->config['tab'] = __('Content Elements', 'avia_framework' ); $this->config['icon'] = AviaBuilder::$path['imagesURL']."sc-a-div.png"; $this->config['order'] = 1; $this->config['target'] = 'avia-target-insert'; $this->config['shortcode'] = 'av_a_div'; $this->config['modal_data'] = array('modal_class' => 'flexscreen'); $this->config['tooltip'] = __('Creates a div with id and an anker with id', 'avia_framework' ); } /** * Popup Elements * * If this function is defined in a child class the element automatically gets an edit button, that, when pressed * opens a modal window that allows to edit the element properties * * @return void */ function popup_elements() { $this->elements = array( array( "name" => __("Div ID & Anker Name", 'avia_framework' ), "desc" => __("Enter the ID value here.", 'avia_framework' ), "id" => "adivid", "type" => "input", "std" => "anker"), ); } /** * Editor Element - this function defines the visual appearance of an element on the AviaBuilder Canvas * Most common usage is to define some markup in the $params['innerHtml'] which is then inserted into the drag and drop container * Less often used: $params['data'] to add data attributes, $params['class'] to modify the className * * * @param array $params this array holds the default values for $content and $args. * @return $params the return array usually holds an innerHtml key that holds item specific markup. */ function editor_element($params) { $params['innerHtml'] = "<div class='avia-a-div'>".trim( $params['adivid'] )."</div>"; $params['class'] = ""; return $params; } /** * Frontend Shortcode Handler * * @param array $atts array of attributes * @param string $content text within enclosing form of shortcode element * @param string $shortcodename the shortcode found, when == callback name * @return string $output returns the modified html string */ function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "") { extract(shortcode_atts(array('adivid' => 'anker'), $atts)); $adid = trim($adivid); $output = ""; $output .= "<div id='{$adid}' class='anker'><!-- <a name='{$adid}' /> --></div>"; return $output; } } }What is the right framework entry to remove the additional Markup on all nested levels?
Greez WrYBiT
Hi, I have updated my site from 2.2. to 2.3 and all icons has dissapeared. I uploade some new from fontello and reassigned the icons. They are there now but a lot of issues appeared. Portfolio images are not displaying, m icon list is not making icons visible, smame with testimonial pictures. Also pictures that appear by some movement do not appear at all now.
Can you please let me know how to fix it ASAP?
my site is http://customizewp.com/I want to increase the font size of Woocommerce pricing in product page only and paging option in catalog page. Please see the images for your kind consideration.
Product Page -> http://postimg.org/image/5nhv3a1o7/
Catalog Page -> http://s9.postimg.org/dhjxxtja7/Shop2.jpg
Viewing 30 results - 101,881 through 101,910 (of 106,417 total)
