Viewing 30 results - 15,151 through 15,180 (of 18,733 total)
  • Author
    Search Results
  • #358091

    Hi David!

    Try with this:

    .image-overlay {
        display: none !important;
    }
    .grid-image:before {
        content: attr(title);
        background: red;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 1000;
        text-align: center;
        line-height: 180px;
        opacity: 0;
        font-weight: bold;
        font-size: 24px;
    }
    
    .grid-image:hover:before {
        opacity: 1;
    }
    
    .grid-image:before{
        transition: all linear 0.2s;
    }

    Cheers!
    Josue

    #358082

    In reply to: Font size in iconbox

    Hi, the following will increase the font size to 16px.

    .iconbox_content_container { font-sizeh: 16px !important;}

    #358076
    Geoffdoyle
    Participant

    Hi,

    I am using Enfold theme and would like the font size of my blog posts to be larger. Also I would like to change the colour of it from grey to black.

    Any help would be greatly appreciated.

    Thanks

    #358061

    Topic: Font size in iconbox

    in forum Enfold
    thermaltech
    Participant

    Hello team,

    have been trying to increase font size in icon box (not the heading, but body text), but without success so far. Found Quick CSS in several forum entries but not for this purpose.

    Please help me out …

    Cheers
    thermaltech

    #358010

    Hi Marcus M.!

    Try changing line 772 in /enfold/config-templatebuilder/avia-shortcodes/slideshow.php from this.

    if(trim($title) != "")   $title 	= "<h2 {$title_styling} class='avia-caption-title' $markup_name>".trim(apply_filters('avf_slideshow_title', $title))."</h2>";
    

    To this.

    if(trim($title) != "")   $title 	= "<span {$title_styling} class='avia-caption-title' $markup_name>".trim(apply_filters('avf_slideshow_title', $title))."</span>";
    

    And then add this to your custom CSS.

    .avia-caption-title { font-size: 20px; }
    

    Regards,
    Elliott

    champlainconted
    Participant

    Consider this code:
    [av_button label='Find out more' link='manually,http://' link_target='' size='small' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff'][av_button label='Sign up' link='manually,http://' link_target='' size='small' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff'][av_font_icon icon='ue83d' font='entypo-fontello' style='' caption='' link='' linktarget='' size='18px' position='left' color=''][/av_font_icon]Starts February 9th![av_font_icon icon='ue85b' font='entypo-fontello' style='' caption='' link='' linktarget='' size='18px' position='left' color=''][/av_font_icon] Full Time Day Schedule

    It’s meant to all appear on one line, in sequence, but instead I see this:

    What CSS do I need to make the icons appear exactly where I place them? (like the buttons)

    #357943

    Hi!

    Try adding this to your custom CSS.

    #header_meta .sub_menu {
        left: 80px !important;
    }
    .av-main-nav > li > a > .avia-menu-text {
        font-size: 1.1em !important;
    }

    Regards,
    Elliott

    #357790

    In reply to: Menu bugs

    Hi!

    You have this somewhere in your custom CSS which is turning it red.

    .current-menu-item .avia-menu-text {
        color: #d1202f !important;
    }

    I couldn’t tell where because you have all of the CSS minified.

    As for the menu overlapping the logo are you wanting to reduce font size of the menu? If so then you can do that in Dashboard > Enfold > Advanced Styling.

    Best regards,
    Elliott

    • This reply was modified 11 years, 4 months ago by Elliott.
    #357717

    Hi Yigit,

    thanks for your ideas…

    didn’t work though. Obviously I thought I’d have to alter your code in the highlighted line:
    .blog-meta span.iconfont:before { display: none; }
    .blog-meta span.iconfont {
    background-image: url(PATH TO IMAGE);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    }

    So my code for the Quick CSS would be:

    .blog-meta span.iconfont:before { display: none; }
    .blog-meta span.iconfont {
    background-image: url(http://dev.sprachschule-bonn.com/?p=3746);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    }

    Any more ideas?

    THanks

    -beenee

    #357461
    Marcus M.
    Participant

    Hey,

    great work.

    In the slideshow of enfold every slide title has only h2-tags. I think too much h2-tags isnt good for SEO so i use only one slide normally. Now i look for a way to delete the h2-tag completly from the slideshow title by saving the same font size and style? In Layerslide there is an option and you can choose the h-tag. In Slideshow there is no option :( Could anybody have an idea and can help me?

    I was editing in slideshow.php but without any result.

    • This topic was modified 11 years, 4 months ago by Marcus M..

    Hey Felix!

    It should be like this:

    .responsive #top #wrap_all #header {
        position: fixed;
    }
    
    @media only screen and (max-width: 767px) { 
    .responsive #top #main {
        padding-top: 88px !important;
    }
    }
    
    @media only screen and (max-width: 989px) {
    .responsive .main_menu ul:first-child > li > a{
        font-size: 12px;
        padding: 0 6px;
    }
    }

    Best regards,
    Josue

    Hi Josue,
    thanks again for your quick response. The solution works, but a conflict with the resizing of the menu appears. CSS for the header behaviour is now:

    .responsive #top #wrap_all #header {
        position: fixed;
    }
    
    @media only screen and (max-width: 767px) { .responsive #top #main {
        padding-top: 88px !important;
    }
    
    @media only screen and (max-width: 989px) {
    .responsive .main_menu ul:first-child > li > a{
        font-size: 12px;
        padding: 0 6px;
    }
    }

    Second and third command do not work together, the menu doesn’t resize anymore when I add the top-padding.
    Sorry to bother you again. You offer a really great service!
    Best, Felix

    #357373

    Hi Russ!

    I guess you are referring to CSS code that makes the logo collapse, look for this code in the child theme style.css (enfold-child/style.css):

    .logo img { display: none !important; }
    .logo {
        width: 30%;
        top: 15px;
    }
    
    .logo, .logo a {
        overflow: visible;
        height: auto !important;
    
    }
    .subtext > div {
       line-height: 10px;
    }
    
    .subtext .second-line{
        font-size: 16px;
        padding-left: 30px ;
        font-family: 'Quattrocento', serif;
        color: green;
    }

    Best regards,
    Josue

    #357339

    Hello,

    1. Solved, all the pictures in
    https://drive.google.com/folderview?id=0B1pkqICrGgvKMmFfaDE1Ri1pU2M&usp=sharing

    3. I’m using typekit. I want to change the font size of the main menu elements on em not pixels

    Thanks

    Jorge

    #357081

    Thanks, I actually removed the top two sets of code because it was pushing other elements up. Now I am using these bits of code and it looks pretty good. Still too much spacing between title and entry but I can live with that :)

    #top .fullsize .template-blog .post-title { font-size: 18px; text-align: left;}
    #top .fullsize .template-blog .post .entry-content-wrapper > *, #top .fullsize .template-blog .post .entry-content-wrapper { max-width: 100%; }

    .entry-content { font-size: 13px; }

    .page-id-3870 .post_delimiter { display: none; }

    .page-id-3870 h2, h3 {
    line-height: 2.1em;
    margin-bottom: -15px;
    }

    If I wanted to have the post title aligned left on only this page, would I add .page-id-3870 in front of the first line of code, instead of #top .fullsize?

    #356920

    Hey!


    @fraktale911
    , You can do this, http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/, to add a custom class to your elements and then use CSS to change it’s size.

    .your_class, .your_class h3 { font-size: 30px !important; }
    


    @Schuns
    , If you want to use HTML then make sure to add it to the “HTML / Video / Audio” tab instead of the text tab.

    Best regards,
    Elliott

    #356907

    Hey beenee!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .blog-meta span.iconfont:before { display: none; }
    .blog-meta span.iconfont {
    background-image: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    }

    Cheers!
    Yigit

    #356895

    Hey songjiekun!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    .news-thumb img, .news-thumb img { width: 40px; height: 40px; }
    .news-thumb { width: 48px; height: 48px; }
    strong.news-headline { font-size: 14px; }

    then go to Appearance > Editor and open Functions.php file and find

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news

    and change it to

    $avia_config['imgSize']['widget'] 			 	= array('width'=>48,  'height'=>48);						// small preview pics eg sidebar news

    and regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/
    Cheers!
    Yigit

    #356617
    songjiekun
    Participant

    “latest news widget” thumbnail picture is too small. how to make it bigger? and the text size is also too small. how to resize the font size for “latest news”?

    jazbird
    Participant

    hi,

    i just updated to the latest version of enfold and now my navigation has a strike through on the over state and the current page state.

    please help? not sure how i can get rid of it.

    these are the current CSS menu additions.. thanks!

    :)
    …………………………

    .av-main-nav ul a { padding: 3px 3px; }
    .sub-menu li { border-bottom: 1px solid #e2e2e2; }

    .header_color .main_menu ul:first-child > li.current-menu-item > a, .header_color .main_menu ul:first-child > li.current_page_item > a , .header_color .main_menu ul:first-child > li.current-menu-parent > a {
    color: #7abf15;
    }

    .av-main-nav > li > a { line-height: 180px !important; }

    .header-scrolled .av-main-nav > li > a { line-height: 58px !important; }

    #top .main_menu .menu li ul a {
    font-size: 14px;
    background: transparent!important;
    }

    #menu-item-4412 span.avia-arrow {
    display: none;
    }

    #356546

    In reply to: Display tagline

    Hi!

    I don’t think the tagline will work on the current state of your header. Are you sure you want the tag line there? Honestly, I don’t think it has any impact on the header. I think it’s better if you just remove it. Anyway, you can adjust the position of the tagline element with this:

    span.tagline {
    position: absolute;
    right: 550px;
    }

    Use this to fix the tagline on scroll:

    span.tagline {
    top: 7px;
    }

    Use css media queries to adjust the position and font size of the tagline on different screen sizes.

    Cheers!
    Ismael

    #356494

    Hi!

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

    Change the number in px for “font-size” to your needs.

    Cheers!
    Andy

    Hi!

    use this to reduce font size:

    .entry-content-wrapper .post-title {
    font-size: 26px;
    }
    

    Best regards,
    Andy

    #356485

    Hey pegasso4444!

    Thank you for using Enfold.

    Looks like you’re using a lot menu items for the element. Try this on Quick CSS:

    #top .av-submenu-container .container {
    padding: 0 50px !important;
    }

    You should also consider decreasing the font size of the sub menu items.

    Best regards,
    Ismael

    #356467

    Hey kailibuy!

    Thank you for using Enfold.

    You can change the font styling on Enfold > Advanced Styling panel. If you want to change the body text, use this on Quick CSS:

    body, body p {
    font- size: 16px;
    }

    Cheers!
    Ismael

    #356456

    Hi!

    I checked the site and diacritics are working fine. You can decrease the font size to 12px and it will still work.

    Cheers!
    Ismael

    Hi!

    You can add this on QuickCSS:

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

    Cheers!
    Ismael

    #356453

    Hello:

    1. Not completelly working, please see picture https://drive.google.com/open?id=0B1pkqICrGgvKekk3cGQtM3VKb00&authuser=0
    2. OK, working
    3. I don’t find font change in Dashboard > Enfold > General Styling. I found it in Advanced Styling
    I have this in my old instalation in the custom css that is not working

    .social_header .main_menu ul:first-child > li a {
    font-size: 1.1em;
    }

    I_ can put 15px which looks quite similar but I’d prefer to put 1.1em, how can I do that?

    4, 5 and 6 solved

    Thanks and regards!

    #356248

    Topic: Special headline

    in forum Enfold
    Al06
    Participant

    I had a problem with my Headlines can you help me?

    <’h2′ class=’av-special-heading-tag’ itemprop=”headline” style=’padding-bottom:’10′px;font-size:”px;’>’Logistik‘ on every page

    #356197
    frame_michael
    Participant

    Hi.

    I use Enfold 3.0.1 on WordPress 4.0.1
    On this page http://frame3d.de/team/ the social-icons used to work in WordPress 4.0.
    Since a few days the icons won’t appear anymore.

    This is the DEBUG-Code of one of the elements:

    [av_team_member name='Markus Schwab' job='CEO / Marketing' src='http://www.frame3d.de/wp-content/uploads/2013/04/markus-485x430.jpg' attachment='3070' attachment_size='' description='Er ist unser kaufmännischer Geschäftsführer. Kundenkontakt, Marketing und Projektleitung liegen in seinem Verantwortungsbereich. Wenn er nicht gerade für frame mit irgendjemandem kommuniziert, reist er gerne durch die Welt und schaut sich fremde Kulturen an.' font_color='' custom_title='' custom_content='' custom_class='']
    [av_team_icon title='E-Mail an Markus' link='mailto: (Email address hidden if logged out) ' link_target='' icon='ue805' font='entypo-fontello']
    [av_team_icon title='Markus auf Xing' link='https://www.xing.com/profile/Markus_Schwab?sc_o=mxb_p' link_target='_blank' icon='ue923' font='entypo-fontello']
    [/av_team_member]

    If you take a look at our DEV-Page (see private-content below) you will see, that the single- or double-quotes are replaced by these other ones: ” or ’
    I guess that the wordpress-function shortcode_parse_atts() cannot handle these. so i tries to str_replace them in the file enfold\config-templatebuilder\avia-template-builder\php\shortcode-helper.class.php like this:

    $content = str_replace("’", "'", $content);
    $content = str_replace("”", '"', $content);
    preg_match_all( "/$pattern/s", $content , $matches);

    But this didn’t seem to work.

    Do you have any idea, what could be the problem?

    • This topic was modified 11 years, 4 months ago by frame_michael.
Viewing 30 results - 15,151 through 15,180 (of 18,733 total)