Forum Replies Created

Viewing 30 posts - 5,401 through 5,430 (of 14,834 total)
  • Author
    Posts
  • in reply to: Special heading – which font? #488999

    Hi!

    You can select what size to use in the shortcode options.

    Cheers!
    Elliott

    Hi danielmarbach!

    Try deleting the page and recreate it. If your typing out HTML tags then make sure they are all closed properly like so.

    <div></div>
    <p></p>
    <a></a>
    

    If your still having trouble then send us a WordPress login and we’ll take a closer look.

    Cheers!
    Elliott

    Hi SWiTCHConsulting!

    Is that part of the title? Send us a link to your page so we can take a look.

    Regards,
    Elliott

    in reply to: common text within content #488994

    Hi vinayb!

    I don’t know of any plugins for this but it’s pretty easy to do on your own. See here, http://www.inkthemes.com/learn-how-to-create-shortcodes-in-wordpress-plugin-with-examples/.

    Cheers!
    Elliott

    in reply to: format in tables is different every second row #488990

    Hey Gee Are!

    Add this to a codeblock element in that page.

    <style type = "text/css">
    tr, td { background: white !important; }
    </style>

    Cheers!
    Elliott

    in reply to: Page speed and "above-the-fold" issues #488987

    Hey!

    It gives you more options and lets you decide exactly which files should be minified or loaded in the header / footer, etc etc. Some files depend on each other though so they need to be loaded first. If you start to see errors or weird behaviour then it would be best to just use the default settings.

    Best regards,
    Elliott

    in reply to: Enfold search future #488986

    Hey dvbmedia!

    It’s built in. If you want to use it for other non Enfold sites then you will need to build your own or find a plugin to use though I do not know of any that I can recommend.

    Best regards,
    Elliott

    in reply to: Colors going bonkers. Changing themselves #488983

    Hi xandria!

    Your talking about your links in the header? They are displaying as black for me. Make sure to clear your browser cache and any caching related plugins you might have installed to see the changes you do instantly.

    Cheers!
    Elliott

    in reply to: Open ajax portfolio at bottom #488981

    Hey!

    Well the paragraph is supposed to be there. If you remove it then the styling would look different. You can try changing line 523 in the /enfold/config-templatebuilder/avia-shortcodes/image_hotspots.php file from this.

    $output .= "<div class='av-image-hotspot' data-avia-tooltip-position='{$data_pos}' data-avia-tooltip-alignment='{$align}' data-avia-tooltip-class='{$tooltip_width} {$tooltip_pos} {$extraClass} {$tooltip_style} av-tt-hotspot' data-avia-tooltip='".esc_attr(ShortcodeHelper::avia_apply_autop($content))."' style='{$pos_string}'>";
    

    To this.

    $output .= "<div class='av-image-hotspot' data-avia-tooltip-position='{$data_pos}' data-avia-tooltip-alignment='{$align}' data-avia-tooltip-class='{$tooltip_width} {$tooltip_pos} {$extraClass} {$tooltip_style} av-tt-hotspot' data-avia-tooltip='".esc_attr($content)."' style='{$pos_string}'>";
    

    Best regards,
    Elliott

    in reply to: jQuery script not working in portfolio's AJAX preview #488972

    Hi!

    If your trying to target elements that have been loaded via AJAX then you need to use .live or .delegate if I remember right, https://api.jquery.com/category/events/event-handler-attachment/.

    I recommend hanging out in #jquery on irc.freenode.net. I learned quite a bit by just reading about other peoples problems in there.

    Best regards,
    Elliott

    • This reply was modified 10 years, 5 months ago by Elliott.
    in reply to: enfold theme causes errors #488969

    Hey!

    They are talking about this it sounds like, https://developers.google.com/loader/?hl=en. No, we do not use that. We enqueue scripts via the wp_enqueue_script function, https://codex.wordpress.org/Function_Reference/wp_enqueue_script, which is how themes and plugins should add their scripts to a WordPress site.

    Best regards,
    Elliott

    • This reply was modified 10 years, 5 months ago by Elliott.
    in reply to: image name in lightbox on productdetail page #488959

    Hey!

    Your talking about the product featured image correct? I see the text fine on my end. Did you get it fixed?

    Cheers!
    Elliott

    in reply to: Gap between two "Promo-Box" #487858

    Hi KMikeT!

    Add this to a codeblock element in the page.

    <style type = "text/css">
    .av_promobox {
      margin: 10px 0 0;
    }
    </style>

    And then remove the HR / separator element you have before them.

    Regards,
    Elliott

    in reply to: Menu structure error #487856

    Hey BYSTELLART!

    Are you sure you have set the menu to the correct menu area? When you edit your menu scroll down to the bottom and there will be a lot of checkboxes where you can set the menu to display in the theme areas.

    Regards,
    Elliott

    Hi mastermaiksen!

    Add this to your custom CSS.

    td, table, tr { background: white !important; }
    

    Cheers!
    Elliott

    in reply to: change background color of menu option #487854

    Hey catchmikey!

    Navigate to Dashboard > Enfold > Advanced Styling and you can change the hover background color of the main menu links there. If it’s still not working then send us a link to your page so we can take a look.

    Cheers!
    Elliott

    in reply to: Issue with custom.css and Footer Widget Navigation #487853

    Hey janeyj!

    1. You most likely made a typo in the custom.css file. That or you are using CSS which is being overridden elsewhere in which case you can use the !important override to make sure it gets set.

    a { color: red !important; }
    

    2. You can setup the footer menu in Dashboard > Appearance > Menus. Just create a new menu and assign it to the footer menu area. Are you trying to display two menus in that area? I’m not really sure I understand.

    Regards,
    Elliott

    in reply to: Category Pages #487851

    Hi Matt!

    Do you mean you cannot do step #1? When you click on a category link it will send you to the category archives where it will display all posts assigned to that category.

    What your trying to do is create a page, “Guidelines”, which lists all of the categories correct? You could use the widget area element in the page and drag the archives / category widgets to it to display the categories. Or just use a textblock / codeblock element and type out the categories manually.

    Cheers!
    Elliott

    in reply to: New submenu style has reset #487846

    Hey tal_hassidi!

    I’m sorry but I’m not sure what your trying to do there. Highlight in your screenshot exactly what your trying to do so we can get a better idea.

    Did you edit this CSS in the layout.css file?

    .av_seperator_small_border .av-main-nav > li > a > .avia-menu-text {
      border-left-style: solid;
      border-left-width: 1px;
      margin-left: -13px;
      padding-left: 13px;
    }

    Cheers!
    Elliott

    Hi craig_corfield!

    Our contact form currently only has an email function. If you want to change it so it downloads something for the user then that is going to take a lot of time and code to implement and would have to be considered custom work. It would be best to hire a freelancer to help you out with this customization.

    Or you could check out the contact form 7 or gravity forms plugins but I do not know if they have this feature or not.

    Best regards,
    Elliott

    in reply to: Margin issue on images #487838

    Hey Matt!

    Drag a codeblock element to your page and add this inside.

    <style type = "text/css">
    .avia-image-container {
      margin: 0 !important;
    }
    </style>

    Cheers!
    Elliott

    Hi senso!

    In the layout builder switch to the “Plugin Additions” tab and use the product grid / product list shortcodes instead to display your products.

    Cheers!
    Elliott

    Hi Mariusz!

    Your trying to embed an accordion inside an accordion? I don’t think that is going to work as the toggle shortcodes will interfere with each other. The script will probably need editing also.

    Cheers!
    Elliott

    in reply to: Add an extra image to single product page #487834

    Hi!

    Well if it’s the same image for each product then add this to the bottom of your functions.php file.

    add_action( 'woocommerce_before_single_product_summary', 'enfold_customization_product_image' );
    function enfold_customization_product_image() {
    	echo '<div class = "customization_image"><img src = "#" /></div>';
    }

    And then add this to your custom CSS.

    .customization_image {
      position: absolute;
      right: 0;
      top: 100px;
    }

    Best regards,
    Elliott

    in reply to: Tab Element #487829

    Hey boscotwcheung!

    Comment out line 2469 in the /enfold/js/shortcodes.js file.

    //var new_loc = tab.data('fake-id');
    

    Cheers!
    Elliott

    Hey!

    I checked on a Motorola E 2nd gen and it’s working fine. Make sure your using the official Chrome browser.

    Cheers!
    Elliott

    in reply to: How to create a box around/line between sidebar widgets #487824

    Hi James!

    Add this to your custom CSS.

    aside .widget {
      border-bottom: 1px solid;
    }

    Regards,
    Elliott

    Hi splashmediallc!

    Your site is timing out for me. Contact your hosting provider to see if everything is ok.

    Be sure to deactivate all plugins while testing.

    Cheers!
    Elliott

    in reply to: Insecure call SSL HTTPS On Blog Posts #487819

    Hi apremierdj!

    I didn’t see any errors on my end. You did have a form in a text widget in your sidebar so maybe that’s what it’s referring to.

    <form name="checkdate" method="post" action="http://www.gigbuilder.com/cal/mo/premierentertainment.nsf/checkdates"><select name="Month" style="font-size: 15px; color: #9e0b0e; padding: 2px 3px; background-color: #eeeeee; border-width: 1px color:red;"><option value="0" selected="selected">Month</option><option value="1">January</option><option value="2">February</option><option value="3">March</option><option value="4">April</option><option value="5">May</option><option value="6">June</option><option value="7">July</option><option value="8">August</option><option value="9">September</option><option value="10">October</option><option value="11">November</option><option value="12">December</option></select><select name="Day" style="font-size: 15px; color: #9e0b0e; padding: 2px 3px; background-color: #eeeeee; border-width: 1px color:red;"><option selected="selected">Day</option><option>1</option><option>2</option><option>3</option><option>4</option><option>5</option><option>6</option><option>7</option><option>8</option><option>9</option><option>10</option><option>11</option><option>12</option><option>13</option><option>14</option><option>15</option><option>16</option><option>17</option><option>18</option><option>19</option><option>20</option><option>21</option><option>22</option><option>23</option><option>24</option><option>25</option><option>26</option><option>27</option><option>28</option><option>29</option><option>30</option><option>31</option></select><select name="Year" style="font-size: 15px; color: #9e0b0e; padding: 2px 3px; background-color: #eeeeee; border-width: 1px color:red;"><option selected="selected">Year</option><option>2014</option><option>2015</option><option>2016</option><option>2017</option><option>2018</option></select>&nbsp;&nbsp;&nbsp;<input type="submit" value="Check Availability" style="font-family: Arial; font-size: 15pt;">
    
    </form>
    

    Regards,
    Elliott

    in reply to: Problem with styling buttons in layerslider #487817

    Hey connect4consulting!

    Send us a WordPress login and we’ll take a look.

    Cheers!
    Elliott

Viewing 30 posts - 5,401 through 5,430 (of 14,834 total)