-
AuthorPosts
-
August 10, 2014 at 6:29 pm #302276
Hi,
A quick question: how can I include an image next to the text (on the left side of the text) in an icon list?
Kind regards!
- This topic was modified 10 years, 3 months ago by ahuby.
August 11, 2014 at 12:20 am #302326Hi ahuby!
Thank you for using the theme.
You should place the text and images inside a column. Put something like this on the icon list editor:
<div class="flex_column av_one_third first">IMAGE HERE</div> <div class="flex_column av_two_third">TEXT HERE</div>
Place the image on the one third column container before the text.
Best regards,
IsmaelAugust 11, 2014 at 1:28 am #302338This reply has been marked as private.August 11, 2014 at 2:43 pm #302625Hey Andres
Please add following code to Quick CSS as well
div .av_one_half { margin-left: 3%; width: 48%; } div .av_one_third { margin-left: 3%; width: 32.333333%; }
Regards,
YigitAugust 13, 2014 at 2:53 pm #303850This reply has been marked as private.August 13, 2014 at 3:01 pm #303858Hey!
Please use following code instead
.archive.woocommerce .sidebar { display: none!important; } .archive.woocommerce .content { width: 100%!important; border: none!important; }
Cheers!
YigitAugust 15, 2014 at 1:04 pm #304874This reply has been marked as private.August 15, 2014 at 8:33 pm #305071Hey!
Please add following code to Quick CSS as well
@media only screen and (max-width: 480px) { top .wp-caption.aligncenter { margin: 0; width: 100%!important; margin-top: 20px; }}
You can use HTML tab in your new layer and add your button manually
Regards,
YigitAugust 17, 2014 at 6:05 pm #305450This reply has been marked as private.August 17, 2014 at 8:34 pm #305488This reply has been marked as private.August 18, 2014 at 4:58 pm #305852Hi!
You can use this code – insert it into the child theme functions.php or enfold/functions.php file:
add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' ); function custom_override_checkout_fields( $fields ) { $fields['order']['order_comments']['label'] = 'Remarks (i.e. carbon offsets retired on behalf of John Smith):'; return $fields; }
If you also want to adjust the placeholder text use this code instead:
add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' ); function custom_override_checkout_fields( $fields ) { $fields['order']['order_comments']['label'] = 'Remarks (i.e. carbon offsets retired on behalf of John Smith):'; $fields['order']['order_comments']['placeholder'] = 'My placeholder text'; return $fields; }
and replace “My placeholder text” with your custom placeholder text.
Best regards,
PeterAugust 18, 2014 at 6:45 pm #305910This reply has been marked as private.August 19, 2014 at 3:41 pm #306374Hey!
It seems like you have already figured it out – http://i.imgur.com/tAE9iTH.png
Best regards,
YigitAugust 19, 2014 at 4:34 pm #306408This reply has been marked as private.August 19, 2014 at 4:38 pm #306411Hi!
Please add following code to Quick CSS
#top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select { border-color: #e2e2e2; }
Regards,
YigitAugust 20, 2014 at 4:40 pm #306922This reply has been marked as private.August 22, 2014 at 12:22 am #307577Hi!
You can add buttons to LayerSlider slideshows by adding the raw shortcode for them into the html field of a layer.
Cheers!
DevinOctober 2, 2014 at 7:38 am #328700This reply has been marked as private.October 3, 2014 at 6:11 am #329458Hey!
Please make sure that the Responsive mode is enabled on the Slider Settings. Fill in the Layers Container and Responsive under fields. Default value is 1140. You can also use the Attributes panel. Add a unique selector on the Classes field. Use this selector inside css media queries to change the style of the layer on mobile device.
Best regards,
IsmaelOctober 3, 2014 at 10:32 am #329586Thanks Ismael!
-
AuthorPosts
- The topic ‘Image next to text’ is closed to new replies.