Forum Replies Created
-
AuthorPosts
-
April 11, 2016 at 5:16 am in reply to: In responsive, text aligns top the top vertically vs centered vertically. #610949
Hey ftlamont!
The text looks centered in portable device view.
Not sure if you got it sorted if not please elaborate the issue which device youa re viewing and the browser details.Cheers!
VinayApril 11, 2016 at 5:12 am in reply to: Changing text to upper & lower case in Icons, tables etc #610947Hi!
Please add the below code in Enfold > General Styling > Quick CSS
th, .av_icon_caption { text-transform: none!important; }
Now the format you type in the backend will appear in the front end too… :)
Cheers!
VinayHi!
We remove the http://www.sitename.com/ from the links and just add the #hash-tag so the links are called in the same page and the page won’t refresh :)
Best regards,
VinayHi peanuttario!
Yes this is very much possible in Enfold with just 2 easy steps :)
Please select boxed layout from Enfold > Layout Options
and select the dimensionsRegards,
VinayHey Bas!
Please copy the block of jQuery and place it in the below code. The code below can now be added in your child theme function.php that way it won’t break any update :)
// Remove subject value function custom_excerpt(){ ?> <script> // custom jQuery here </script> <?php } add_action('wp_footer', 'custom_excerpt');
Best regards,
VinayHi!
Great! you sorted it … please feel free to let us know if you have any questions.
Regards,
VinayHi!
Please add this css in Quick CSS
.html_header_sidebar .container_wrap_first { float: none !important; }
Regards,
VinayHey!
@jaro let us know if you need any help!
@peanuttario please share the link to the site where we can inspect the element in question.
Cheers!
VinayHey!
The blockquote text is looking black on my end please refresh the page a few times to clear the browser cache and see the changes.
Cheers!
VinayHi!
Themes and plugins can be automatically updated only via wordpress and it is pretty easy to configure it to update automatically please check https://codex.wordpress.org/Configuring_Automatic_Background_Updates
Cheers!
VinayHey!
The link is password protected and we cannot view it because the login credentials are not working. please check and revert back to us with working credentials sow e can help you with it.
Cheers!
VinayHey!
The link is password protected? and the login credentials do not work… please check and provide us with working credentials so we can take a look at the issue.
Regards,
VinayHi rwwood!
You can add a custom ID to the color section and some custom CSS to achieve it but it’s not entirely clear what you are trying to do please provide us a mockup of what you want it look like or to explain what you are exactly trying to achieve? so we can help you with it.
Cheers!
VinayHi!
Alright! We will go ahead and close this ticket.
Have a nice weekend :)
Best regards,
VinayHey!
Glad we could help! We have put together some useful info about enfold theme please feel free to check it out here – http://kriesi.at/documentation/enfold/
Regards,
VinayApril 10, 2016 at 9:29 am in reply to: How to Make Picture Stick to Bottom of a Column/Section #610752Hey raydeeyo!
Please turn on the custom css class name
Add css class name “position-bottom” to the image which need to be positioned at the bottom.
Then add the below css to Quick CSS in Enfold > General Styling
/* position bottom*/ .position-bottom{ position:absolute; bottom:0; }
Cheers!
VinayApril 9, 2016 at 1:17 pm in reply to: Slider photos next to each other + Second menu on the side #610578Hi!
We have not tried it but if it did not suit your needs please choose a different plugin from here https://wordpress.org/plugins/
To add a sidebar menu
Please create your sidebar menu from Appearance > menu
Then go to Appearance > Widgets and drag and drop the Custom menu widget to Display Everywhere or other sidebars like page sidebar.
Select the menu you like to display in the widget options.
Lastly Select the sidebar options in the page or post on the right side under Layout options.Regards,
VinayHey!
Please make the user as admin. We cannot see the complete dashboard options :)
Cheers!
VinayHey!
Thank you for the kind words.
To hide the word cloud in tablets and mobile please use the below css
/*hide wordcloud in tablet and mobile*/ @media and screen(max-width:756px) { #wordcloud { display:none; }}
Please check the background image path in the previous code “background-image.png” should be replaced with your background image path.
#footer { background-image: url(background-image.png) no-repeat top right; background-size: contain; }
We were unable to view the development site as the logins did not work.
Regards,
VinayHi!
OK! let’s try and set it up for you… please create a temporary user with ‘administrator’ role and share in private content with permission to deactivate all plugins and add custom code if necessary to help you resolve this issue.
Cheers!
VinayApril 9, 2016 at 10:01 am in reply to: Content not visible while editing a page using edit element #610543Hi pankajbokdia!
As i see the content is not showing only in text editor. it is an issue with wordpress.
Please follow this post https://kriesi.at/support/topic/editor-text-is-white-so-i-cant-see-it/#post-608904
Best regards,
VinayHey!
We are working on your ticket please wait while we update the results here soon.There seem to be a folder permission issue on the server please correct it and the import shoud work fine.
However we imported all pages using an xml file but your site refused to import the media files i think it is due to the folder permission.
Please make sure /wp-content/uploads has the correct folder permission 755.
lastly please go to Appearance > menu and select the main menu.
Best regards,
Vinay-
This reply was modified 9 years, 2 months ago by
Vinay.
Hi Nathan!
Both products are centered on the page i am assuming you like to center the product name and price to do so please use the below css
.inner_product_header { text-align: center; }
If this is not what you are trying please elaborate the issue with a mockup of what you are trying to do?
Best regards,
VinayHi!
The current structure will not allow you to do it easily… Please use a color section and insert the insta widget inside it then we can provide you custom css to make it full width.
Cheers!
VinayApril 9, 2016 at 9:12 am in reply to: Slider photos next to each other + Second menu on the side #610533Hey surya-x!
You can use a plugin like https://wordpress.org/plugins/horizontal-slider/
Cheers!
VinayHey!
To hide some mailchimp fields only on selected pages please follow the below steps.
1. First get the page ID of the pages in which you need to hide the form fields.
To get the page ID right click inspect the page get the page id class name from the body tag.2. Right click on the form field which you like to hide for example the name field. You will see the below code
<p class=" first_form form_element form_fullwidth" id="element_avia_1_1"> <input name="avia_1_1" class="text_input " type="text" id="avia_1_1" value="" placeholder="Name"></p>
3. Select the unique ID such as id=”element_avia_1_1″ and combine it with the page ID class name example.
.page-id-xxx #element_avia_1_1 { display:none!important; }
Repeat this for other fields which you like to hide.
Best regards,
VinayHi Şanlı!
As i understand you want to create a landing page (sort of) and this page should not be linked to the main menu.
Please follow the steps below
1. Admin > Pages > add new > from the right sidebar layout options select the header options to show header or not.
2. If you like to use a different menu you can disable main menu and use a fullwidth submenu.
3.On the page use a button and in the edit options you will find the options to paste the link to the new page.Please feel free to contact us if you have any questions.
Best regards,
VinayHi!
That’s Great!
Should you need any help please feel free to get in touch with us :)
Thank you for using Enfold!
Regards,
VinayHey!
Great! you found a solution… should you need any help please feel free to get in touch with us.
Thank you for using Enfold.
Best regards,
VinayHi!
Sorry for the delay. When you bump your tickets the system thinks it’s answered and pushes the ticket off the queue. In case of urgent help request you to kindly wait till we reply. We reply to all the tickets asap.
Coming to the issue… To include the external svg if you right click on it and inspect you get this link then you can insert it in a text widget and customise its color and size.
<img src="http://www.amc.com/wp-content/themes/amc-tv/assets/images/AMC_Logo_White.svg">
Regards,
Vinay -
This reply was modified 9 years, 2 months ago by
-
AuthorPosts