I created a basic contact form using WPForms – however, the appearance is different from what I see in the edit window of WPForms and the actual page of the form.
Differences are :
– Font size and style
– Asterisk color
– There should be no space between boxes and label text
How it appears in the edit window of WPForms
https://www.mocosbikehire.jp/wp-content/uploads/2019/06/スクリーンショット-2019-06-10-16.48.45.png
How it appears
https://www.mocosbikehire.jp/wp-content/uploads/2019/06/スクリーンショット-2019-06-10-17.01.39.png
What can I do to display the form as it appears in the edit window?
Hey Wondergirrrl,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
#top .social_bookmarks li {
margin: 5px;
width: 40px;}
#top .social_bookmarks li a {
font-size: 30px;
width: 50px;
line-height: 40px;
min-height: 40px;
}
#top .social_bookmarks{
height: 40px;
}
2 -3 -4 Could you please attach a mockup of what you’re trying to achieve?
If you need further assistance please let us know.
Best regards,
Victoria
Hi,
1. I want to show the social buttons in the header right bigger – they are too small… how can I change it? Can I change color , too?
2. And the font in the footer column 4 with the menu is different to the others – I want to have them like in column 2 and 3. Where can I change it?
3. I want to show the social buttons in the FOOTER bigger, too- they are too small and I want to show them in the middle
4. I want to adjust the theme to responsive – so, do I have to adjust each single objekt in the same – or ist there a special function?
5. Where can I adjust responisve options, when I don’t want to show 2 posts in a row, but just one (startpage)
6. I had to hide the slider in the start page at mobile view – but now the space is too much between menu and the next object. How can I adjust this?
4. I want to show social buttons in the footer at responsive view – now they are hidden -how can I change?
Can you help plse?
Thnx so much!!!
-
This topic was modified 6 years, 9 months ago by
Wondergirrrl.
Hey m_reiprich,
Thank you for the links, instead of using and iframe or widget how about creating a shortcode for this Masonry gallery?
Then you could just use [our_supporters] to display the element
Here is an example, Try adjusting the shortcode in this code to your Masonry gallery and add it to the end of your functions.php file in Appearance > Editor:
// our supporters shortcode = [our_supporters]
function supporters_sc( ){
return do_shortcode('[av_font_icon icon="ue889" font="entypo-fontello" size="20px"][/av_font_icon]');
}
add_shortcode( 'our_supporters', 'supporters_sc' );
Just replace:
[av_font_icon icon="ue889" font="entypo-fontello" size="20px"][/av_font_icon]
with the shortcode you want to use.
Please let us know if we can assist further.
Best regards,
Mike
Hi Ismael,
We tried multiple areas of updating the slider settings width and nothing seemed to work. The width of the entire slider needs to stretch as the site pages do. This means the background image should always expand to the edges of the browser. Unfortunately, the slide content width continues to stretch and even the fonts increase in size. Ideally we’d like the slider content to respond exactly as the avia page builder content responds to browser window size.
Is this possible? We’ve played with a multitude of options with the slider settings with no luck. Thanks in advance for any assistance you can provide.
Btw, the slider’s canvas size settings applies to the entire slider width, not the slide content width.
Hi webfacile,
I think the problem is here:
label='Plus d'info'
You can’t use special characters inside, please download, install and activate this plugin: Special Character Translation plugin
then use this shortcode:
[av_button label='Plus d###34### info' link='manually,#' link_target='_blank' size='large' position='center' label_display='' icon_select='yes' icon='ue816' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' av_uid='' custom_class='' admin_preview_bg='']
If you want to know more about this plugin you can check: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#using-special-characters
Best regards,
Nikko
Hi Inga,
Thanks for the screenshots, please try this in Quick CSS for the header colour:
#top #header_meta {
background-color:#323c5f !important;
}
And this for the product title:
.single-product-summary .entry-title {
font-size: 26px !important;
}
Don’t forget to delete the old CSS and JS files under Enfold->Performance before you check the results.
Best regards,
Rikard
This reply has been marked as private.
Hi,
Add this to quick css also:
.grid-entry-excerpt.entry-content{
color:#666666!important;
font-size: 13px!important;
font-weight: 500!important;
}
Best regards,
Jordan Shannon
Hi,
I added following code to Quick CSS in Enfold theme options > General Styling and it worked
#top #wrap_all .iconbox .iconbox_content .iconbox_content_title {
font-size: 20px;
}
#top .iconbox_content_container {
font-size: 18px;
}
Please review your website
Best regards,
Yigit
Hey limedrop,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
.iconbox .iconbox_content .iconbox_content_title {
font-size: 24px;
}
#top .iconbox_content_container {
font-size: 18px;
}
Best regards,
Yigit
Can you provide me the css?
Need to change it on desktop size.
:)
Rikard,
Thanks for the recommendation. Upon adding the adjusted code you recommended it changes but the text is still not visible on tablet or mobile.
@media only screen and (max-width: 767px) {
#top .aviaccordion-title {
font-size: 16px !important;
}
}
@media only screen and (max-width: 767px) {
#top .aviaccordion-title {
-webkit-transform:rotate(-90deg); -moz-transform:rotate(-90deg); -o-transform:rotate(-90deg); transform:rotate(-90deg);
}
}
I’ve already setup the font size at 16p in the enfold control panel (default is 13p), but in the website nothing is changed.
So, my objective is to have the “default size” setup on 16p for all the website (post content or page content)
Hi,
Thank you for the update.
The element manager can only scan shortcodes inside the post content or those added in widgets. You have to replace the icon shortcodes with the actual html. Example:
<span class="av_font_icon avia_animate_when_visible avia-icon-animate av-icon-style- ll_bg_fff av-no-color avia-icon-pos-left avia_start_animation avia_start_delayed_animation" style=""><span class="av-icon-char" style="font-size:1.1em;line-height:1.1em;" aria-hidden="true" data-av_icon="" data-av_iconfont="m24"></span></span>
We replaced the shortcodes with their actual html in the DE version of the site.
Best regards,
Ismael
Hi,
For the arrow, add this to quick css:
@media only screen and (max-width: 767px){
.responsive #scroll-top-link {
display: block!important;
}}
What font sizes are you trying to edit?
Best regards,
Jordan Shannon
Only the font color seems to change and to be updated.
But still problem with font size.
And with the “GO UP” button on mobile view.
Hi,
I am using a child-theme, but there is some css I which I cannot override, which is the “display:block;” in this section in the table.css in
/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/table
@media only screen and (max-width: 767px)
{
.responsive div .avia_responsive_table .avia-data-table table,
.responsive div .avia_responsive_table .avia-data-table tbody,
.responsive div .avia_responsive_table .avia-data-table tr,
.responsive div .avia_responsive_table .avia-data-table td,
.responsive div .avia_responsive_table .avia-data-table th{display:block;border-top:none; border-right:none; border-left:none; text-align: center;}
.responsive .avia_responsive_table .avia-data-table{border-style:solid; border-width: 1px;}
.responsive .avia_responsive_table .avia-data-table .avia-pricing-row .avia-desc-col{text-align: center;}
.responsive .avia_responsive_table .avia-data-table .avia-button-row, .responsive .avia_responsive_table .avia-data-table tr:first-child th{display:none;}
.responsive .avia_responsive_table .avia-data-table td:before {
display:block;
font-style: italic; font-size: 11px;
}
How can I change this without actually editing /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/table/table.css?
Thanks,
Karin
-
This topic was modified 6 years, 10 months ago by
karinorage.
Dear Support team,
I use the child theme control panel to modify the content page stile:
– font type
– font size
– font color
But unfortunately the changes dosen’t show online.
It seems the changes I do in backend doesn’t affect the frontend.
Even the “Go UP” button dosen’t appear on mobile view of the website.
Could you help me?
Best Regards
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
#top .alternate_color.title_container .main-title a {
color: orange;
font-size: 20px;
}
Best regards,
Yigit
Hi,
You haven’t closed the first media query:
@media only screen and (max-width: 480px) {
#top .aviaccordion-title {
font-size: 16px !important;
}
It’s missing a curly bracket at the end which might be the reason for it not applying. Also note that 480 pixels will only apply to the smaller end of mobile devices. You could try changing it to 767 for instance.
Best regards,
Rikard
Hi,
Thanks for the clarification. Please try the following in Quick CSS under Enfold->General Styling:
.tab_titles .tab {
font-size:16px !important;
}
Best regards,
Rikard
I managed to get the captions to work fine on desktop by adding
#top .aviaccordion-title {
font-size: 30px;
}
#top .aviaccordion-title {
-webkit-transform:rotate(-90deg); -moz-transform:rotate(-90deg); -o-transform:rotate(-90deg); transform:rotate(-90deg);
}
For mobile I tried adding this but it doesn’t do anything. It seems that the captions are no longer flipped and are out of frame.
@media only screen and (max-width: 480px) {
#top .aviaccordion-title {
font-size: 16px !important;
}
@media only screen and (max-width: 480px) {
#top .aviaccordion-title {
-webkit-transform:rotate(-90deg); -moz-transform:rotate(-90deg); -o-transform:rotate(-90deg); transform:rotate(-90deg);
}
}
-
This reply was modified 6 years, 10 months ago by
eggc.
Hi, I was having a problem earlier today with a CSS style mismatch, see this thread:
https://kriesi.at/support/topic/masonry-blog-perfect-grid-for-desktop-flexible-masonry-for-mobile/
All seemed to be working fine after I removed the offending lines of code from functions.php.
I have been adding a few bits of code to my quick CSS to change colours and font sizes. They were saved and the updated styles appeared on my pages. But suddenly the code added over the last few hours has vanished.
Would you mind having a look to see if I have missed something else when I moved from enqueue method to the standard CSS file? Or if there something else going on?
I have never seen this problem when working on other Enfold websites.
Please can you help?
Hi
I did updatge the theme and the problem is the same.
When I instert a button in the classic editor (in this case in the product description ) stll have Clicl me as label
Shortcode is this:
[av_button label='Plus d'info' link='manually,#' link_target='_blank' size='large' position='center' label_display='' icon_select='yes' icon='ue816' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' av_uid='' custom_class='' admin_preview_bg='']
And it displays Click me
The probleme seems to be the content of the label I think. As i need to put in the button label this “PLUS D’INFO” or :”Plus d’info” containing an apostrophe it create a conflict with the shortcode syntaxis. So I guess you will have to find some workarround.
Thank you
Hi,
Thank you for the update.
The following markup breaks the template.
<strong>Crown Prince Walkingstick</strong>< font size="3"> <!--- this is invalid
<font size="3"><font color="#939598">Calligraphy and Special Requests
12 October 2018</font>
You forgot to close the font tag. Please rectify it by adding a closing tag.
Best regards,
Ismael
Hi,
it seems that I can’t find where to adjust color and size of a font.
Kindest regards,
Andreas.
Hello
I want to change the font size of the tab’s registers. I found the following CSS solution for another entry:
.av-inner-tab-title {
font-size: 18px;
}
But this one doesn’t work. Is there another solution?
Many thanks
Beat
i use “blog posts” element and in inspect tool find what avia-builder-el-number is and just change number and text. If you want to use font-size you can if you dont just delete it…
View post on imgur.com
.avia-builder-el-29 + .av-alb-blogposts a.more-link:before {
content:’text button’ !important;
font-size: 15px;
}
.avia-builder-el-29 + .av-alb-blogposts a.more-link {
font-size: 0 !important;
}
.avia-builder-el-32 + .av-alb-blogposts a.more-link:before {
content:’text button’ !important;
font-size: 15px;
}
.avia-builder-el-32 + .av-alb-blogposts a.more-link {
font-size: 0 !important;
}
Hello there
I have increased the phone number in the top of the site using this:
.phone-info span {
display: inline-block;
font-weight: 300 !important;
font-size: 1.4em;
line-height: 28px;
color: white;
}
But it seems to cause problems under the header – the main content seems to go behind as the header is pushed down the page