Viewing 30 results - 2,671 through 2,700 (of 18,728 total)
  • Author
    Search Results
  • #1301947

    Ooh! PS… Is there a simple CSS to lower the font size in those same boxes?

    (I noticed on mouseover that the box is still clipped by the font)

    Steve😊

    #1301911

    In reply to: Tab Section problems

    Hi Martin,

    Thanks for that. Please try this CSS as well for the Tab Section:

    .av-tab-with-image .av-inner-tab-title {
        width: 100% !important;
        text-align: center !important;
    }
    
    .avia-tab-title-padding-default .av-outer-tab-title {
        display: flex !important;
        text-align: center !important;
    }

    And this for the Accordion:

    @media only screen and (max-width: 767px) {
    #top .aviaccordion-preview-title h3 {
        font-size: 12px !important;
        word-break: break-all;
    }
    .aviaccordion-excerpt p {
        font-size: 12px !important;
    }
    }

    Best regards,
    Rikard

    #1301874

    Hi projectt_co_uk,

    Please add this CSS code in Enfold > General Styling > Quick CSS:

    #top #footer .widgettitle {
        border: none;
    }
    
    #top #footer .avia-button {
        font-size: 24px;
    }

    Just adjust the font size value.
    Hope this helps.

    Best regards,
    Nikko

    Hi Ismael,

    thanks for your reply!

    unfortunately this code didn’t work.

    Also I do have the grid layout on more pages of my website – it is important, that the font size only changes on the individual blog post sides.

    Best regards,
    Raphaela

    #1301709
    projectt_co_uk
    Participant

    Hi,

    On my website https://www.viaremovals.co.uk.

    I would like to remove the lines showing at the top and bottom of the footer widget titles.

    I also want to increase the width, icon size, phone number font size of the button in the footer 2nd column.

    Please can you help.

    Kind regards,

    #1301685

    Hi,

    – I removed the code from Customizer (you can find it here as well – https://pastebin.com/j9Yj3wKM)
    – Disabled header widget code in Functions.php file of your child theme
    – Added a new menu item to your menu and chose to display it as button
    – Went to Enfold theme options > Advanced Styling and adjusted button menu item colors
    – Added following code to bottom of Quick CSS field

    #menu-item-61 .avia-menu-text {
        border-left: none;
    }
    #menu-item-8182 {
        right: 100px;
    }
    @media only screen and (max-width: 1200px) {
    #top #header .av-main-nav > li > a {
        font-size: 15px !important;
    }}
    @media only screen and (max-width: 1055px) { 
    #menu-item-8182 {
        right: 30px;
    }}

    Please review your website :)

    Best regards,
    Yigit

    #1301609

    Topic: Iframe Fullwidth?

    in forum Enfold
    digitalprint2222
    Participant

    Hi,
    how can i make an Iframe stretch to full width?
    It doesnt even stretch full width when putting in a colorsection.

    <iframe src="https://example.org/test/test/" style="border:0px #ffffff none;" name="myiFrame" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" height="1080px" width="1920px" allowfullscreen></iframe>

    This is the section:
    `[av_section min_height='' min_height_pc='25' min_height_px='500px' padding='default' margin='' custom_margin='0px' color='main_color' background='bg_color' custom_bg='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' video_mobile_disabled='' overlay_enable='' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' scroll_down='' custom_arrow_bg='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' id='' custom_class='' template_class='' aria_label='' av_element_hidden_in_editor='0' av_uid='av-449u' sc_version='1.0']
    [av_heading heading='Headline' tag='h2' style='blockquote modern-quote modern-centered' subheading_active='subheading_below' show_icon='' icon='ue800' font='entypo-fontello' size='4vw' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' subheading_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' icon_size='' av-medium-font-size-1='' av-small-font-size-1='' av-mini-font-size-1='' color='' custom_font='' icon_color='' margin='' margin_sync='true' padding='10' icon_padding='10' link='' link_target='' id='' custom_class='' template_class='' av_uid='av-koxeaaox' sc_version='1.0' admin_preview_bg='']
    Komm rein
    [/av_heading]

    [av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' id='' custom_class='' template_class='' av_uid='av-koxechgf' sc_version='1.0' admin_preview_bg='']
    <iframe src=”https://example.org/test/test/&#8221; style=”border:0px #ffffff none;” name=”myiFrame” scrolling=”no” frameborder=”0″ marginheight=”0px” marginwidth=”0px” height=”1080px” width=”1920px” allowfullscreen></iframe>
    [/av_textblock]
    [/av_section]

    Kind regards
    Max

    #1301588

    Hi,

    Thanks for that. You have this somewhere in the theme, which is setting the size on mobile:

    @media only screen and (max-width: 479px) {
    .responsive #top .slideshow_caption h2 {
        font-size: 20px !important;
    }
    }

    I can’t check where it’s coming from, since /wp-admin/ redirects to an account page.

    This CSS which is likely added in the same place, is setting the size for the caption:

    @media only screen and (max-width: 479px) {
    .responsive #top .slideshow_caption .avia-caption-content {
        font-size: 13px !important;
    }
    }

    This CSS is controlling the position of the numbers:

    @media only screen and (max-width: 767px) {
    .av-no-preview .avia-timeline .milestone_icon.milestone-icon-hasborder .milestone_inner {
        line-height: 60px;
    }
    }

    And this controls the timeline:

    @media only screen and (max-width: 767px) {
    .av-no-preview .avia-timeline-vertical .av-milestone-icon-wrap:after {
        left: 32px;
    }
    }

    Best regards,
    Rikard

    Hey Raphaela_Pla,

    Thank you for the inquiry.

    Based on the screenshot, looks like the Blog Posts element is set to have a grid layout. If that is true, you can use this css code to adjust the font size of the post title.

    .avia-content-slider .slide-entry-title {
        font-size: 0.8em;
        line-height: 1.2em;
        margin: 0;
    }
    

    And regarding the image borders, please post the site URL in the private field so that we can actually check the blog posts element.

    Best regards,
    Ismael

    Hi CharlieTh,

    You’re welcome :)

    The default is the font size that is set in Enfold > General Styling > Fonts > Default content font size
    As for the code, you can use this one (just replace the font size values):

    #top #wrap_all #main h1 {
        font-size: 30px;
    }
    
    @media only screen and (min-width: 768px) and (max-width: 989px) { 
      #top #wrap_all #main h1 {
        font-size: 26px;
      }
    } 
    
    @media only screen and (min-width: 480px) and (max-width: 767px) { 
      #top #wrap_all #main h1 {
        font-size: 24px;
      }
    } 
    
    @media only screen and (max-width: 479px) { 
      #top #wrap_all #main h1 {
        font-size: 20px;
      }
    } 

    The media queries used are the same as the screen sizes set used by Text Block setting.

    Best regards,
    Nikko

    #1301484
    johnjosephjohansson
    Participant

    Hi,

    I’ve been trying to adjust the color of my active tab section titles but I’m not able to. The hover state works fine, but the font color remains the same on the active state. Here’s what my CSS looks like:

    .av-inner-tab-title {
    font-size: 24px;
    font-family: ‘barlow-semibold’,sans-serif !important;
    color: #246b81 !important;
    }

    .av-inner-tab-title:hover {
    color: #b0d0d9 !important;
    }

    .av-active-tab-title {
    color: #f2b84c !important;
    }

    I want the inactive title to be #246b81, the hover title to be #b0d0d9, and the active title to be #f2b84c. Do you have any suggestions?

    The page is at https://discoverdowntowndanville.org/dine/. The tab section is close to the top.

    Thanks for your help!
    John

    #1301473

    Hi Jordan,

    thank you for the quick answer.

    To remove this code works

    #top .av-caption-style-overlay a.av-masonry-item-with-image .av-inner-masonry-content * {
    color: #8c4e3b !important;
    }

    But the other code

    .av-masonry-entry-content.entry-content font{
    font-color:#fff!important;
    font-weight:bold!important;
    font-size:20px!important;
    }

    works not – so sorry. But I found a solution in another code. Thank you.

    But there is now another problem. I have two masonry galleries on two different pages.

    1. On page-id-362 I need no overlay over the images
    2. On page-id-406 I need an overlay with 0,5 over the images

    How can I handle this?

    Thank you and greetings,
    Sabine

    • This reply was modified 4 years, 10 months ago by TakiwaSoulArt.
    #1301450

    Hey Sabine,

    Add this to quick css:

    .av-masonry-entry-content.entry-content font{
    font-color:#fff!important;
    font-weight:bold!important;
    font-size:20px!important;
    }

    If the color remains brown, you have to find and remove this from css:

    #top .av-caption-style-overlay a.av-masonry-item-with-image .av-inner-masonry-content * {
        color: #8c4e3b !important;
    }

    Best regards,
    Jordan Shannon

    #1301401
    TakiwaSoulArt
    Participant

    Hi,

    I want to change the text color of the masonry gallery, the size and the font weight. But I can’t find a CSS Code for it. I need help please.

    At the moment the text color is brown and the text is only shown in mouse hover state.

    Thank you and greetings, Sabine

    #1301323

    Hey Knutnik,

    You can change the container size under Enfold->General Layout->Dimensions. I’m not sure I understand what you mean about images and fonts though, could you try to explain that a bit further please?

    Best regards,
    Rikard

    Yes, that would be great!

    Another comment…
    When in ALB and see the 4 possible screen sizes for a font…it will say: default.
    It
    would be nice to have some sort of indicator (maybe where shows the media query information as help in text to the right side) — or as hover — of WHAT size that default IS.

    That way, if I think it’s wonderful, I can leave, or I can change. But right now, I am blind to the value.
    Another thought. If you could indicate in which css file the media queries set the default sizes, that might help as well. And how to re-set those defaults in the child theme? Ah, dreams are good things! Love Enfold as it is…am not complaining … just dreaming.

    Will be thrilled to receive css, though. These are just musings of a user!

    Thanks for answering!

    #1301126

    Hi,

    It is not a bug. This is actually the default layout of the blog posts element when the sidebar is not enabled.

    To remove the line below the posts and adjust the font size of the title and the read more link, try to add this css code.

    body#top.home .av-alb-blogposts.template-blog div.post_delimiter {
        display: none !important;
    }
    
    body#top.home {
        font-size: 14px;
    }

    Best regards,
    Ismael

    #1301117

    Hi gianmarizzi,

    Can you try to use this CSS code instead:

    @media only screen and (max-width: 767px) {
      #top #wrap_all .av_promobox .avia-promocontent h3 {
        font-size: 30px;
      }
    }

    Best regards,
    Nikko

    #1301071

    Hi Nikko,
    Thanks for your prompt reply and the new code! But it is not just the alignement and the font size. It is also the the font color and the line breaks as well as format e.g. for underlined text. Just saw that it seems that WordPress deleted </p>, </br> and <u> from the category description. I had included that in order to check what is done by WordPress and what is not.
    Thanks

    #1301061
    Knutnik
    Participant

    Hello,

    I would like to set the width of the content container to 77% instead of 1310px.

    Firstly, I want the font to always scale with the screen size and container size and, secondly, that the screen size is optimally used.

    Should I change the standard WordPress image sizes for this?
    For example, a larger maximum image, etc.?
    Are there any sample pages?
    I had read somewhere that you can specify this in functions.php.
    Do you have any tips on this?
    That would be great.

    Thank you in advance.

    #1300985

    In reply to: Second menu question

    Hi Roger,

    Thanks for giving the link.
    Please add this CSS code in Enfold > General Styling > Quick CSS:

    #top #wrap_all .widget_nav_menu .menu li {
        border: none;
        margin: 0 0 4px 0;
    }
    
    #top #wrap_all .widget_nav_menu .menu li a {
        padding: 12px 27px;
        background-color: #eee;
        font-weight: 700;
        color: #444;
        -webkit-transition: background-color .1s ease-out;
        transition: background-color .1s ease-out;
        text-decoration: none;
    }
    
    #top #wrap_all .widget_nav_menu .menu li a:hover {
        background-color: #e2e2e2;
        text-decoration: none;
    }
    
    #top #wrap_all .widget_nav_menu .menu li.current_page_item a {
        background-color: #c00525;
        background-repeat: no-repeat;
        background-size: 9px 9px;
        background-position: 93% center;
        color: #fff;
    }

    Best regards,
    Nikko

    #1300938

    Hi Alex,

    Please try this CSS instead:

    #top #header_meta a{
      font-size: 16px !important;
    }

    Best regards,
    Rikard

    #1300857

    Hi,

    Sorry for the late reply. You will need custom CSS in order to adjust that unfortunately. Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 767px) {
    .avia-promocontent h2 {
        font-size: 30px;
    }
    }

    Or you could try duplicating the element for mobile, and set the visibility accordingly.

    Best regards,
    Rikard

    #1300544

    Hi,

    Now I have these codes in my quick CSS but the problem is that which ever of the two codes (either the padding 30px OR the margin-top 0) are on top of the other cancels the other. So in this instance, I have the margin code working BUT the padding code will not work. If I switch it so that the padding code is above the margin-top code, the margin code (fixing the time alignment) stops working.

    .tribe-events-single-section.tribe-events-event-meta.primary dt:not(:first-child) {
        margin-top: 0;
    }
    
    #top #tribe-events-pg-template {
        max-width: 100%;
        padding: 30px !important;
    }
    
    .tribe-events-visuallyhidden{
      display: none;
    }

    I wonder if the quick CSS in this new Enfold version has a bug or something? That’s because I also have a problem in one of my other sites where the quick css keeps bugging: the scroll-to-top button disappeared from mobile view ALTHOUGH I do have the right CSS code showing it. It has worked before but after the update, it stopped. So the code I have is

    @media only screen and (max-width: 767px) {
        .responsive #top  #scroll-top-link {
        display: block;
    }
    }

    I also added a minor tweak for the appereance but it doesn’t matter if I have it in there or not. Tried both ways.

    a#scroll-top-link, a#scroll-top-link:hover {
    background: #bf4da4;
    border-radius: 100px;
    font-size: 26px;
    }
    #1300519

    In reply to: Styling Post Slider

    Hi Steph,

    Please try this CSS instead:

    .avia-content-slider h3.slide-entry-title a {
      font-size: 16px;
    }
    
    .avia-content-slider .av-vertical-delimiter {
      display: none;
    }

    Best regards,
    Rikard

    #1300507

    Hey diefleischerei,
    Vielen Dank für Ihre Geduld und den Link zu Ihrer Website. Bitte versuchen Sie dieses CSS in Ihrem Quick CSS:

    #header_meta #menu-item-779 > a {
    	font-size: 17px;
    }

    Die Schriftgröße beträgt jetzt 11px, und Sie haben nach 6px mehr gefragt, sodass der Code 17px anzeigt. Sie können ihn jedoch jederzeit anpassen.

    — Translated with Google —

    Thank you for your patience and the link to your site, please try this css in your Quick CSS:

    #header_meta #menu-item-779 > a {
    	font-size: 17px;
    }

    The font size is now 11px, and you asked for 6px more so the code says 17px, but feel free to adjust to suit.

    Best regards,
    Mike

    #1300477

    Hi,

    No, it is not. In your first post you are pointing us out to header, not slider heading.

    Find following code

    .angebotslider .avia-caption-title {
    	font-size: 14px !important;}

    and change it to following one

    .responsive #top .angebotslider .avia-caption-title {
    	font-size: 14px !important;}

    Regards,
    Yigit

    wordninj
    Participant

    Hi,

    I’m attempting to create a custom menu in the footer.

    Where I’m stuck: I cannot get the font to resize or change the color of the link hover.

    I’m using an html block in the layerslider, and have tried multiple ways to resize the font to 14px. I also want the link color before hover to be a different color than the normal site settings and the hover color to be different.

    Here’s what I’ve tried with no success:
    * inline html inside the layer slider interface
    * classic head/style/body tags inside the html code block in the layer slider (what’s in there right now)
    * css using my own class
    * css using a copied selector
    * changing the font size inside of the layer in the layer slider to the size I want

    Help!
    Below I provide the exact thing I’m trying to accomplish, the old site that we’re copying into your theme from a different one. Along with creds.

    Also, can you kindly share how I can style icon colors? You can see the fb icon I started playing around with. I would like for it to appear as a different color to start, but especially for it to change color on hover.

    I’ve tried:
    * Adding a class to the icon inside the layer slider interface
    * Using css to style the selector

    Neither has yielded results. And I’m especially unclear about how to change the hover color for something like this.

    Last but not least, I would like to drop a copyright line at the bottom of this area. I already have this js for is:
    ©<script type=”text/javascript”> copyright=new Date(); update=copyright.getFullYear(); document.write(“” + update + ” ” + ” “); </script> Mary Sise, LLC [nolink]
    But I can’t seem to add any js to the layer slider interface. Can you give me a way to accomplish the above inside of the layer slider I’m creating as the footer “page”?

    I had to design all of this in layer slider to get the responsive aspect I want with the background image.

    #1300391

    I changed the font-size of #tel to 27px and change version to 1.0.4 (I let it in this state, so you can check this) -> doesn’t work, even if I log out from backend

    #1300370

    Hi Tim,

    I did test it out on your site by changing this code in style.css of the child theme to 18px (turned it back after checking) then just change the version number from 1.0.1 to 1.0.2 to 1.0.3 (increment by one after each change) and it worked properly:

    #tel {
        font-size: 17px !important;
    }

    You can also use Quick CSS for it since the change does show unlike style.css
    As for layout.css I believe that’s in the parent theme, since it caches styles and js files, to force it to fetch new ones, you need to increment the version number before checking for example it’s now 4.8.2, you can change it to 4.8.2.1 then you’ll see these changes show up properly.

    Best regards,
    Nikko

Viewing 30 results - 2,671 through 2,700 (of 18,728 total)