Viewing 30 results - 7,201 through 7,230 (of 18,743 total)
  • Author
    Search Results
  • #941913
    Susanne
    Participant

    URL: http://www.suemasondesign.com

    Hi there,
    I don’t know how to enlarge the font size of the sub menu under the Mega Menu. At the moment, it’s tiny – although apparently H1. See sub menu under Surface Pattern Design.
    Please help.
    Thank you

    #941673

    if you activate the debug mode you can see the enfold shortcodes generated down the layout window.
    If you only pull one image with hotspots in it – configure everything you like – you can see the shortcode like this :

    [av_image_hotspot src='https://webers-testseite.de/wp-content/uploads/DSC5417-1030x616.jpg' attachment='30814' attachment_size='large' animation='no-animation' hotspot_layout='numbered' hotspot_tooltip_display='' hotspot_mobile='aviaTBhotspot_mobile' custom_class='']
    	[av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-left' tooltip_width='av-tt-default-width' tooltip_style='main_color' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='11,51.5']
    		Kirschblüte in Bonn - Friedrichstraße
    	[/av_image_spot]
    	[av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-left' tooltip_width='av-tt-default-width' tooltip_style='main_color' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='50,29.6']
    		Kirschblüte in Bonn - Friedrichstraße
    	[/av_image_spot]
    [/av_image_hotspot]

    you can enter this in a tab text field (best on text editor not visual one) – these tabs you can pull in a tab of a tab-section
    this is a diligence task – but it is possible !
    ( PS i tried to do it tab in a tab – but this messes up )

    nice to see one screenshot – and you are not able to adjust the few lines yourself ?
    Centering from a screeshot is hard to say – center to what – a link is alway better

    this is my simulation :

    #top .av-masonry-load-more {
        display: inline-block; 
        box-shadow: 1px 1px 3px #666;
        border-radius: 15px;
        left: 50% ;
        transform: translateX(-50%);
        position: relative;
        top: 15px;
       color: #fff ;
       background-color : rgb(30,205,215) !important;
       font-size: 28px !important
    }

    PS : you get rid of that deformation by letter-spacing set to 0px

    #941648
    hbourdillon
    Participant

    Hi there,
    I’ve got all the “Customizing Appearance” bits sorted except on the mobile screen view. The first text block under the first image is off centre as you can see.
    I’ve tried changing the font size in screen settings etc but it is still off….
    Any thoughts or relevant CSS code?!
    Many thanks
    Helena

    #941645
    This reply has been marked as private.
    #941573

    Hi Uli,

    You many have assigned general styles for h2 but styles change even for h2 when they come in different Advanced Layout Builder elements.

    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

    
    .template-page .entry-content-wrapper .avia_textblock h2 {
        text-transform: none;
        font-size: 36px;
        font-weight: normal;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    Thanks Victoria,

    For icon-list, I changed the size like that (and it’s great !)
    @media only screen and (max-width: 767px) {
    #av_section_2 .avia-icon-list .iconlist_icon {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 20px;
    }
    BUT there is 2 problems
    1/ On mobile device, the vertical dotted line which links the icons is shifted on the right. Is it possible to get the line in the middle of the icon (same as on desktop) ?

    2/ On desktop, other icons (not icon-list) in others pages get their border-width thicker. While I modified this in a CSS (see by example the link) :
    .av_font_icon.av-icon-style-border .av-icon-char {
    padding: 20px;
    font-size: 30px!important;
    border-width: 1.5px; }
    I don’t know if it created a conflict ?

    For the logo space, I reduced the size of the logo and changed the size of Header. But I don’t know the code to put some space on the top.
    When I tried, it made the breadcrumps disappear.
    I would like the same space on top as it is actually on bottom.
    Can you write me the CSS for that ?

    For information, here is all the CSS, I put on.
    /* pour que le menu ne se superpose pas avec le logo sur petits ecrans */
    @media only screen and (min-width:768px) and (max-width:1200px) {
    #top .av-main-nav > li.menu-item-avia-special {
    display: block;
    }
    #top .av-main-nav > li.menu-item {
    display: none;
    }
    .responsive #top .av-main-nav #menu-item-search.menu-item-avia-special {
    display: block;
    }
    }

    /* pour que les icones soient plus petites sur petits ecrans */
    @media only screen and (max-width: 767px) {
    #av_section_2 .avia-icon-list .iconlist_icon {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 20px;
    }

    #header
    .avia_transform .av_font_icon {opacity: 1 !important;}

    /* F dans menu mobile */
    @media only screen and (max-width: 479px) {
    .responsive #top #wrap_all #header .social_bookmarks {
    display: block;
    }

    #faq ul { padding-top:0 !important;}
    #footer { font-size: 0.8em; }
    #footer .first { font-size: 1.3em; }

    /* colonnes du footer sur mobile */
    #footer div .av_one_fourth {
    margin-left: 0%;
    width: 100%;
    }

    .av_promobox {border-radius: 8px}
    .av_font_icon.av-icon-style-border .av-icon-char {
    padding: 20px;
    font-size: 30px!important;
    border-width: 1.5px;
    }
    @media only screen and (max-width: 767px) {
    #av_section_2 .avia-icon-list .iconlist_icon {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 20px;
    }
    /* pour enlever you are here sur le fil ariane ou breadcrumps */
    span.trail-before {
    display: none!important;
    }

    Thanks in advance,
    Anne

    #941434

    Hi,

    Thanks for the info.

    Please use the following css codes instead.

    
    #top .footer_color .mc4wp-form input[type="submit"] {
        color: #000000;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 12px;
        margin: 0;
        cursor: pointer;
        border-color: #000000;
        background-color: #ffffff;
        border: 1px solid #000000;
        width: 238px;
        padding: 20px;
        margin-left: -5px;
    }
    
    #top .footer_color .mc4wp-form input[type="email"] {
        text-align: center;
        font-size: 12px;
        padding: 20px;
        border-color: #000000 !important;
        border-bottom: 0px;
        background-color: #f8f8f8;
        color: #000000 !important;
        margin: 0;
    }
    
    ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
      color: #000000 !important;
    }
    ::-moz-placeholder { /* Firefox 19+ */
      color: #000000 !important;
    }
    :-ms-input-placeholder { /* IE 10+ */
      color: #000000 !important;
    }
    :-moz-placeholder { /* Firefox 18- */
      color: #000000 !important;
    }
    

    Best regards,
    Ismael

    Hey annesite,

    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

    
    @media only screen and (max-width: 767px) {
      #av_section_2 .avia-icon-list .iconlist_icon {
        height: 30px;
        width: 30px;
        line-height: 30px;
        font-size: 20px;
      }
      #footer div .av_one_fourth {
        margin-left: 0%;
        width: 100%;
      }
    }
    @media only screen and (max-width: 479px) {
      .responsive #top #wrap_all #header .social_bookmarks {
        display: block;
      }
    }
    

    As for the logo space, are if you add padding or margin the logo will shrink, you probably need to make the header taller in the theme options first.

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #941180

    Hey alliancepp,

    Add this to quick css:

    #menu-item-search a{
    font-size:26px!important;
    }

    Best regards,
    Jordan Shannon

    bakbek
    Participant

    Hi, how can I customize the load more button in a masonry galley? I want to increase the font size and change the font color and maybe add a different background color.

    Thanks.

    #940989

    1) there is a checkbox on alb element –
    2 ) you can copy html code to the form element label as ( if you like get rid of target blank) :
    <span>I have read the <a href="https://page-url-to-privacy-data" target="_blank">Privacy Statement</a>. I agree that my details and data will be collected and stored electronically to answer my request. Note: You can revoke your consent at any time for the future via e-mail to (Email address hidden if logged out) *</span>
    3) do not preselect check-mark – the user has to do it activly
    4) this has to be a mandatory field

    click to enlarge:

    PS : the span is good to style it differnt to other labels ( make font-size smaller etc. )
    You can see it here with enfold contact form: https://webers-testseite.de/kontakt/

    annesite
    Participant

    Hi,
    I tried to find the answer in the forum but I didn’t.

    1/ On mobile device, icons on list or alone are too big. How can I reduce the size ?
    I put a CSS to change the size and border (for desktop). Is it the reason why its stay big on mobile ?
    How can ajust the size on mobile ?
    Here is the CSS
    .av_font_icon.av-icon-style-border .av-icon-char {
    padding: 20px;
    font-size: 30px!important;
    border-width: 1.5px;

    2/ My footer are 4 column side by side. But on mobile device its stay like that so the column are too small.
    How can I put it one below the other ?
    Here are the CSS I put (if it help to see what I have already done)
    #footer { font-size: 0.8em; }
    #footer .first { font-size: 1.3em; }

    3/ The social media icon that was on the right side of the menu on desktop has disappeared on mobile.
    How can I fix it ?

    4/ On desktop, how can I put some space above and below the logo. The same as example on your demo (Heading “portfolio” by example)

    Thanks a lot for your help

    #940903

    Hi,

    Please try the below code and you should be able to see a tick mark. Then you can change the unicode :)

    /* Mega menu arrows */
    
    #top .avia-bullet {
    	border: none!important;
    	background:red!important;
        padding:0;
        margin: 0 10px 0 0!important;    
    }
    #top .avia-bullet:before {
        content: "\e812";
        font-family: 'entypo-fontello';    
        font-size:11px;
        line-height:1em;
        position:absolute;
        top:10px;
        left:-3px;
    }

    If you still have an issue we will need to inspect the site please get back to us when your site will be available to inspect.

    Best regards,
    Vinay

    #940787

    Hi,

    Thank you for the update. Try to use it in the Quick CSS field to override the previous modification.

    @media only screen and (max-width: 1920px) {
    body div .avia-button {
        border-radius: 3px;
        padding: 10px;
        font-size: 12px;
        text-decoration: none;
        display: inline-block;
        border-bottom-style: solid;
        border-bottom-width: 1px;
        margin: 3px 0;
        line-height: 1.2em;
        position: relative;
        font-weight: normal;
        text-align: center;
        max-width: 100%;
    }
    }

    Best regards,
    Ismael

    #940654

    Hey,

    Please change your code to following one

    .header_color .main_menu ul:first-child > li > a { color: black; font-size: 14px; }
    
    #top .main_menu .menu ul li>a { color:black; }
    
    .main_menu .menu ul { width: 275px; }
    
    #top .main_menu .menu li ul ul{
        left: -275px !important;
    }
    
    .addthis_toolbox {
    padding-bottom: 10px;
    float:right;
    }
    
    div.page p {
    clear:right;
    }
    
    @media only screen and (max-width: 767px) {
    .main_menu .avia-menu, #header_main_alternate {
      display: block !important;
    }
    .av-main-nav > li { display: none; }
    li#menu-item-search {
      display: block!important;
    }
    .responsive .main_menu {
      float: right;
    }}
    #top .av-main-nav ul a { padding: 5px 10px; }

    Best regards,
    Yigit

    • This reply was modified 8 years ago by Yigit.
    #940618
    Adamantum
    Participant

    Hi there, this is hopefully a problem with a quick solution. How do I make the magnifying glass search icon always appear, even when in mobile view? I already have some Quick CSS added, which I’ve included below — just to make sure that any new CSS you provide doesn’t create a conflict. Thanks!

    .header_color .main_menu ul:first-child > li > a { color: black; font-size: 14px; }
    
    #top .main_menu .menu ul li>a { color:black; }
    
    .main_menu .menu ul { width: 275px; }
    
    #top .main_menu .menu li ul ul{
        left: -275px !important;
    }
    
    .addthis_toolbox {
    padding-bottom: 10px;
    float:right;
    }
    
    div.page p {
    clear:right;
    }
    
    @media only screen and (max-width: 767px) {
    .main_menu .avia-menu, #header_main_alternate {
      display: block !important;
    }
    .av-main-nav > li { display: none; }
    li#menu-item-search {
      display: block!important;
      margin-top: -90px;
      right: 70px;
    }
    .responsive .main_menu {
      float: right;
    }}
    
    #top .av-main-nav ul a { padding: 5px 10px; }

    Hey DROR,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    #footer .widget * {
        font-size: 13px;
    }
    

    Best regards,
    Yigit

    bakbek
    Participant

    Hi, as you can see in the screenshot, the footer widgets have different size and style fonts. How can I make it the same for all the widgets?

    #940498

    In reply to: Problem with table

    Hi
    No it does not work ….
    When I check the code with google chrome, here’s what I see:

    td {
    border-width: 10px! important;
    }

    td {
    font-size: 13px;
    padding: 9px 12px;
    border-style: solid;
    border-width: 1px;
    border-left: none;
    border-top: none;
    }

    #940341

    Hi,

    Still struggling to get this working, can you please review my code below.

    QUICK CSS:

    #mc4wp-form-1 {
    .email {
    text-align: center;
    font-size: 12px;
    padding: 20px 80px;
    border-color: #000000;
    border-bottom: 0px;
    }

    ::placeholder {
    color: #000000;
    }

    .button {
    color: #000000;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 0px 0px;
    cursor: pointer;
    border: #000000;
    padding: 20px 118.5px;
    border-color: #000000;
    background-color: #ffffff;
    border: 2px solid #000000;

    }
    }

    MAILCHIMP FORM:

    <p>
    <input type=”email” class=”email” name=”EMAIL” placeholder=”NAME@EMAIL.CO.UK” required />
    <br>
    <input type=”submit” class=”button” value=”SUBSCRIBE” />
    </p>

    Thanks.

    #940246

    Hey bauchope,

    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

    
    .avia-table.avia-data-table.avia-table-2.avia-builder-el-7 .avia-heading-row th,
    .avia-table.avia-data-table.avia-table-3.avia-builder-el-9 .avia-heading-row th {
      font-size: 16px;
    }
    .avia-table.avia-data-table.avia-table-2.avia-builder-el-7 td,
    .avia-table.avia-data-table.avia-table-3.avia-builder-el-9 td {
      font-size: 14px;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #940079
    hazelallturf
    Participant

    Hi,

    I have added a mailchimp form to my footer. Within the mailchimp form I have coded a customer css in html which is exactly how I would like to form to display. The enfold theme however is overriding the coding I think as it is nothing like I have designed.

    The full code is:

    <style>
    .email {
    text-align: center;
    font-size: 12px;
    padding: 20px 80px;
    border-color: #000000;
    border-bottom: 0px;
    }

    ::placeholder {
    color: #000000;
    }

    .button {
    color: #000000;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 0px 0px;
    cursor: pointer;
    border: #000000;
    padding: 20px 118.5px;
    border-color: #000000;
    background-color: #ffffff;
    border: 2px solid #000000;

    }
    </style>
    <p>
    <input type=”email” class=”email” name=”EMAIL” placeholder=”NAME@EMAIL.CO.UK” required />
    <br>
    <input type=”submit” class=”button” value=”SUBSCRIBE” />
    </p>

    Please can you advise how to use this code instead of the enfold set css?

    I have used https://www.w3schools.com/html/tryit.asp?filename=tryhtml_intro to build my css.

    Many thanks

    #940054

    Thank you for all your help.

    I appreciate that from the bottom of my heart.

    I have couple of questions if you don’t mind me asking

    1). How can I create categories like shown on this page https://muslimhands.org.uk/appeals (as you can see when I hover over it the text slightly comes on the image.

    2). How can I create a donate button in the header for mobile so it always shows a donate button between the logo and the burger menu.

    Once again I appreciate all your help.

    PS. I have adjusted the font size of the menu … how can I make the drop down menu better looking? Something like this https://www.islamic-relief.org.uk/syria-appeal/

    #940053

    to your menu – the font is very big 30px is suitable for people with a visual impairment ;)
    i think 24px will be more than necessary:

    #top #header .av-main-nav > li > a {
        font-size: 24px;
    }
    #940038

    I tried opacity and that didn’t work either –

    .page-id-197 #av-tab-section-1 .av-section-tab-title {
    font-size: 10px !important;
    display: block !important;
    opacity: 1 !important;
    }

    Perhaps it’s a line height issue? Thanks, again! :)

    #940004

    I have kinda the same issue, however adjusting the min-height and font-size does work if i use unstick feature for the topbar. a part of the topbar then sticks out. any suggestions on what to do if I use the unstick top header feature?

    Regards Gavin

    #939947
    xxxinkxxx
    Participant

    Hi there,

    Hope you experts can help me with a bit of issue.
    I’m trying to change the width of the input field for “Mobile Number” and “Your Email” to be the same width as “First Name”.
    Tried referencing to this post, however, after multiple tries were unable to get it.

    Any suggestions?

    The form is on the bottom of this page.

    Current CSS code:

    /* CF7 Submit Button CSS Styles */
    .wpcf7 input[type=submit] {
    padding:15px 45px;
    background:#FCE228;
    color:#232323;
    font-size:16px;
    font-weight:bold;
    border:1px solid #232323;
    cursor:pointer;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    }
    
    /* CF7 Submit Button CSS Hover Styles */
    .wpcf7 input[type=submit]:hover {
    background-color: #232323;
    color: #FCE228;
    border:1px solid #232323;
    }
    
    /* CF7 Label Text Styles */
    .wpcf7 label {
    padding: 0 0 10px 0;
    font-size: 20px;
    color:#232323;
    }
    
    /* CF7 File Upload Button CSS Styles */
    
    .wpcf7 input[type=file] {
    padding:0px 0px;
    background:none;
    color:#000;
    font-size:14px;
    border:none;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    }
    
    /* CF7 Input Field Heights */
    .wpcf7 input[type=text] {height:40px;}
    .wpcf7 input[type=email] {height:40px;}
    .wpcf7 textarea {height:120px;}
    
    /* CF7 Input Field Width */
    .wpcf7 input[type=tel] {width: 50%;}
    
    /* CF7 Input Field border and radius */
    #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: #232323;
    border-radius: 3px;
    margin-top: 5px;
    }
    
    /* CF7 name and email Fields alongside but not on mobile */
    @media only screen and (min-width: 768px) {
    #top .wpcf7-form-control-wrap.your-name input[type=text] {
    width: 95%;
    
    }
    .wpcf7-form div + p, 
    .wpcf7-form div + p + p {
    width: 50%;
    float: left;
    padding: 0px 20px 0px 0px;
    }
    
    .wpcf7-form div + p + p {
    padding: 0px 0px 0px 20px;
    clear: right;
    }
    
    }
    #939866
    bauchope
    Participant

    I have set up a few tabular data tables and the font seems to be huge. Can you tell me where I can change the size please?
    login details below
    Many thanks

    #939738

    Hello,
    there is only one page so just go to the homepage (taking away the /wp-admin from the domain I’ve sent you) and you will see it.

    and I have the exact same problem on this subdomain: http://roswithaclages.de/
    All was fine until I added 50px padding to the last 1/1 container than the container disapeared and I was left wirh:
    ….. [/av_textblock] [/av_one_full] [av_one_full first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='50px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='#d1d1d1' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_breaking='' mobile_display=''] [av_textblock size='' font_color='' color='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' admin_preview_bg=''] Test 1/1 [/av_textblock] [/av_one_full]
    visible on the home page.

    Both domain are clean installations, only plugin is akismet

    • This reply was modified 8 years ago by gregorh.
Viewing 30 results - 7,201 through 7,230 (of 18,743 total)