Viewing 30 results - 14,551 through 14,580 (of 18,733 total)
  • Author
    Search Results
  • #396352

    The tutorial is interesting indeed, also tried with the CSS options from the mc4wp plugin but still can’t achieve exactly what I wanted.

    – how to make the label fields 100% width? seems like the theme is overwriting the mc4wp CSS for fields width (it works on the “submit” button but not for fields)
    – how to change the font type, size and weight (make it bold for example) with mc4wp? (again seems like mc4wp CSS gets somehow overwritten)

    #396351

    In reply to: Responsive Issues

    Hey!

    Looks like the footer modification is also visible on desktop view. Please make sure that the modifications are inside the media query. Remove the font-size property here:

    .footer-info {
    color: #888888;
    font-size: 10%;
    }

    If possible, please provide a screenshot of the vertical alignment issue.

    Best regards,
    Ismael

    #396185

    Hi HiDrew!

    Add this to a codeblock element in your page.

    <style type = "text/css">
    .avia-testimonial-wrapper {
    left: 50% !important;
    position: relative;
    transform: translate(-50%, 0px);
    }
    </style>

    The bullet points should be the same as the font size. Are you trying to increase the bullets but leave the font size alone? You could try adding a span inside the li and then use this CSS.

    li { font-size: 20px !important; }
    li span { font-size: 12px !important; }
    

    But you would have to surround it all with another element and target it that way so it doesn’t mess up your other areas.

    Regards,
    Elliott

    #396178

    In reply to: Blog Alignment

    Hey HiDrew!

    Add this to your custom CSS.

    .template-single-blog .post-meta-infos { font-size: 14px !important; text-align: left !important; }
    .template-single-blog .entry-content { border-top: 1px solid black; padding-top: 20px !important; }
    

    As for the extra text you could try adding it after line 182 in /enfold/includes/loop-index.php.

    echo '</span>';
    

    Best regards,
    Elliott

    #396174

    Hey dnj14!

    Your trying to embed CSS directly into some files? Instead of doing that just place all of your CSS in the child theme stylesheet. If you need to target a specific page then you can use the page ID like so.

    .page-id-12 h3 { font-size: 20px !important; }
    

    Regards,
    Elliott

    #396150

    Topic: Font size

    in forum Enfold
    NicRW
    Participant

    I am a bit confused about Font sizes. I am using ‘Paragraph’ on 2 different pages but the font size appears differently. I am trying to enlarge the font size on a specific page (What I do page) but not sure how.

    #396064
    HiDrew
    Participant

    Aloha,

    We are trying to be a bit too creative, perhaps – but I have used the testimonial to get the circular photo and special effect on this page: http://bestteampractices.com/home/.

    Wondering how we can center that on the page?

    Also – how can we make the bullet points the same font size?

    Mahalo!
    Drew

    #396056

    Topic: Blog Alignment

    in forum Enfold
    HiDrew
    Participant

    Aloha, I’m trying to align my blog posts per the private content links I have posted.

    How do I:
    – Align the byline to the left?
    – Change the byline font size?
    – Add text after the byline as per the sample?
    – Add a HR after the byline as per the sample?

    Many thanks ;)
    Drew

    #395997

    In reply to: Blog Display

    Hope this helps:

    [1] Create a new custom widget area
    WP Admin: Appearance > Widgets > Custom Widget Area >

    Spiritual Living > Click Add Widget button

    Add PHP widget to the newly created Widget Area:

    			<?php
    				// Shows recent post from category ID 28
    				yourcompany_posts_in_category( 28 );
    			?>

    [2] Custom Blog page
    WP Admin: Pages > Your Custom Blog

    Avia Layout Builder code:

    [av_one_third first]
    [av_textblock size='' font_color='' color='' custom_class='']
    <a title="Spiritual Living" href="http://yourwebsite.com/category/spiritual-living/">Spiritual Living</a>
    [/av_textblock]
    
    [av_image src='http://yourwebsite.com/wp-content/uploads/sites/3/2014/03/category-image.jpg' attachment='381' attachment_size='full' align='center' animation='no-animation' link='manually,http://yourwebsite.com/category/spiritual-living/' target='' styling='' caption='' font_size='' appearance='' custom_class='category-image'][/av_image]
    
    [av_sidebar widget_area='Category Spiritual Living']
    [/av_one_third]

    Thanks Yigit for the quick reply.

    I’ve checked it and it’s still blown up. Basically it seems like everything has blown up, including some of the fonts (they’ve just jumped in size – the whole site has). I can fix that part but what I can’t figure out is the layout. There are no more margins. It’s like the 1/1 has disappeared and it’s just full screen (not a colour section – there’s still a margin but very thin).
    For some reason imgur isn’t letting me upload my screen shot but if you take a look at the portfolio gallery and the accordion slider on the homepage, they are supposed to be set in 1/1 sections which should have a few centimeters margin on both sides of the elements. The margins have disappeared, it’s like this all over the site. I don’t think it’s my browser because I’m looking at all other pages and they appear normal …..Also the entire site has just slowed down, pages are getting caught trying to scroll down…whatever has changed has changed the entire site, seems to have made everything larger which in turn is slowing it all down.

    You are right, responsiveness is still working but it still doesn’t change the problem with the elements themselves still being oversize.

    When i first logged in this morning some of my plugins were deactivated, not sure if this is related or if there was an update last night that may have caused this?

    #395941

    Hey!

    Add this to your custom CSS.

    .av-upcoming-event-data h4 {
      font-size: 14px !important;
      position: relative !important;
      top: 23px !important;
    } /* This is the title */
    .av-upcoming-event-schedule {
      font-size: 20px !important;
      position: relative !important;
      top: -20px !important;
    } /* This is the date */
    .av-upcoming-events {
      background: none repeat scroll 0 0 #e1e1e1;
      padding: 10px;
    } /* This is the grey background */
    

    Regards,
    Elliott

    #395889

    In reply to: anchor links

    I meant I saw these problems when I updated from 3.07 to 3.08 a few weeks ago.
    I deleted all the enfold files, and then installed new ones via ftp, and yes, I saw errors
    during the install (but did not copy them :(
    THe problems started when I began using the child theme as well – do I need to reinstall that?
    I will try to deactivate it…

    ok so I am seeing some of my styling, but not all.
    here is my quick css:

    /*fix fullscreen slider under menu issue*/
    .html_header_top.html_header_sticky.html_large.html_bottom_nav_header #main {
    padding-top: 154px;
    }

    /*change line height in lists – include*/
    li {line-height: 1.35em;
    }

    /*styling pricing tables?*/
    /*.tablepress td {
    padding: 1px 10px;
    }*/

    .wpgmza_map img {
    border:1px!important;
    }

    .wpgmza_map {
    border:1px!important;
    }

    /*swap excerpt for time/date in portfolio widget*/
    .news-link { overflow: visible !important; }
    .news-thumb { position: absolute !important; }
    .news-headline, .news-excerpt { padding-left: 45px !important; }
    .news-time { display: none !important; }

    /*table press description styling*/
    .tablepress-table-description {
    font-style: italic;
    font-size: 12px;
    }

    div .main_color .tabcontainer .active_tab {
    background-color: #fffff;
    color: #a6a6a6;
    }

    /*fix anchor link problems*/
    .js_active .grid-image {
    opacity: 1 !important;
    }

    /*fix anchor links caused by grid loading*/
    @media only screen and (max-width: 767px) {
    .grid-entry.flex_column.isotope-item {
    max-height: 248px !important;
    min-height: 248px !important;
    }

    /*table styling itinerary*/
    td {
    border-bottom-color: #ffffff!important;
    border-right-color: #ffffff!important;
    border-top-color: #ffffff!important;
    border-left-color: #ffffff!important;
    }

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

    /*fix font tab titles*/
    .js_active .tab {
    font-size: 12px;
    }

    .js_active .active_tab {
    font-weight: 600;
    }

    /*widget title size*/
    .widgettitle{
    font-weight: 600!important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px!important;;
    }

    /*===ICON BOXES===*/
    .iconbox .iconbox_content .iconbox_content_title {
    letter-spacing: 1px!important;
    font-size: 40px!important;
    }

    .iconbox_top .iconbox_content{
    padding: 20px 20px 20px 20px!important;
    }

    .iconbox {
    opacity: 0.8;
    }

    .iconbox_icon {
    display: none!important;
    }

    .image-overlay .image-overlay-inside {
    display: none;
    }

    /*===sidebar margins===*/
    .inner_sidebar {
    margin-left: 30px;
    }

    h4 {
    letter-spacing: 1px;
    font-weight: 500;
    }

    .content, .sidebar {
    padding-top: 30px;
    padding-bottom: 20px;
    }

    .container {
    padding: 0px 30px;
    }

    .content .entry-content-wrapper {
    padding-right: 30px;
    }

    /*margins above body*/
    body .column-top-margin {
    margin-top: 30px;
    }

    body .aligncenter, .entry-content-wrapper a:hover .aligncenter {
    margin: 0px;
    padding: 0px;
    position: relative;
    }

    #top .page-id-828 .iconbox_top {
    margin-top: 20px!important;
    text-align: left
    }
    .page-id-828 td {
    vertical-align: top;
    }

    /* Font rendering – fix fonts on firefox!*/
    body #wrap_all{
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }

    /*===grid titles styling==*/
    .grid-entry-title.entry-title {
    font-size: 14px !important;
    font-weight: 500;
    font-family: ‘Oswald’ !important;
    /*text-transform: uppercase;*/
    text-align: center;
    text-color: #666666;
    }

    .grid-content {
    min-height: 85px;
    padding: 10px;
    }

    .grid-entry {
    padding-right: 5px;
    padding-bottom: 5px;
    }

    @media only screen and (max-width: 480px) {
    .grid-entry-title.entry-title {
    font-size: 13px !important;
    font-weight: 500;
    font-family: ‘Oswald’ !important;
    /*text-transform: uppercase;*/
    text-align: center;
    text-color: #666666;
    padding: 5px;
    }
    .grid-content {
    min-height: 55px!important;
    padding: 5px 3px 5px 3px;
    }
    .grid-entry-excerpt{
    font-size: 10px; font-style: italic; margin-bottom: 5;
    }}

    /*change color of tab background on mobile*/
    @media only screen and (max-width: 767px) {
    .responsive #top .main_color .tabcontainer .active_tab {
    background-color: #e6e6e6;
    color: #222222;
    }}

    @media only screen and (max-width: 480px) {
    h1 {font-size: 30px !important;}
    h2 {font-size: 20px !important;
    font-weight: 500;}
    h3 {font-weight: 500;}
    h4 {font-size: 14px !important;}
    body {font-size: 12px;
    line-height: 1.5em;}}

    @media only screen and (max-width: 767px) {
    .grid-entry {
    width: 50% !important;
    padding: 2px;}
    }

    /*fix padding on mobile*/
    @media only screen and (max-width: 480px) {
    /*margins above body*/
    body .column-top-margin {
    margin-top: 15px;}
    }

    @media only screen and (max-width: 480px) {
    .content, .sidebar {
    padding-top: 15px;
    padding-bottom: 10px}
    .content .entry-content-wrapper {
    padding-right: 2;
    padding-left: 2;}
    }

    /*increase container size mobile – limit!*/
    @media only screen and (max-width: 480px) {
    .responsive .container {
    width: 330px!important;
    }}

    /*widget title size*/
    @media only screen and (max-width: 480px) {
    .widgettitle{
    font-weight: 500!important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px!important;;
    }

    /*tab padding mobile*/
    @media only screen and (max-width: 767px) {
    .responsive .tabcontainer .tab_content {
    padding: 5px;
    }
    .tabcontainer {
    margin: 15px 0;
    }
    .tab_inner_content {
    margin: 0 5px;
    }
    .js_active .top_tab .tab {
    border-bottom: none;
    padding: 10px 10px 10px 10px;
    }
    .js_active .tab {
    font-size: 12px;
    }}

    /*fix padding mobile tab table content and borders*/
    @media only screen and (max-width: 480px) {
    td {
    font-size: 12px;
    line-height: 1.25em;
    padding: 5px 5px;
    border-bottom-color: #ffffff!important;
    border-right-color: #ffffff!important;
    border-top-color: #ffffff!important;
    border-left-color: #ffffff!important;
    }

    /*===active menu===*/
    .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.active-parent-item > a {
    color: #666666;
    background-color: #e6e6e6;
    }

    /*#header .current-menu-item
    {background-color: #e6e6e6;
    font-color: #ffffff;
    }*/

    /*===mega menu styling===*/
    #top #header .mega_menu_title a {
    font-size:14px; border-bottom: #ccc 1px dotted;
    }

    #top #header .mega_menu_title a:hover {
    text-decoration:none;
    }

    #header .avia_mega_div .units {
    border:none;
    }

    /*hide date widget latest portfolio*/
    .widget.newsbox .news-time {
    display: none !important;
    }

    /*increase padding under blog image*/
    .flex_column .template-blog .big-preview.single-big {
    padding: 0 0 20px 0;
    }

    /*fix sidebar logo header padding*/
    .html_header_sidebar .logo{
    padding: 30px;
    }

    /*.tabcontainer{
    margin: 10px 0;
    }*/

    /*table styling?*/
    .main_color table caption, .main_color tr:nth-child(even), .main_color .pricing-table>li:nth-child(even) {
    color: #666666;
    }

    ____________

    I am seeing some but not all of the changes, also some that worked fine before like the white borders on the itinerary pages like on this page: http://andes-world-travel.flywheelsites.com/trips/explore-col-40/#tab-id-2 which I have set and reset many times now. It is displaying black for me. So, not sure what is going on.
    thanks
    Nancy
    I read somewhere here that if there is a syntax error then the rest of the code does not get read- it that true?

    #395817

    Hi Coronacom!

    Please go to Enfold/config-templatebuilder/avia-shortcodes folder and open iconlist.php file and find

    $output .=                      "<h4 class='iconlist_title' {$markup} {$this->title_styling}>".$atts['title']."</h4>";

    and change it to

    $output .=                      "<h2 class='iconlist_title' {$markup} {$this->title_styling}>".$atts['title']."</h2>";

    and then add following code to Quick CSS

    .avia-icon-list .iconlist_title { font-size: 18px !important; }

    It would be better if you make the changes on child theme. Please see – http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/

    Best regards,
    Yigit

    #395751

    In reply to: Links

    Hi Peatkay!

    Please firstly turn on custom CSS field for ALB elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then give your element a custom CSS class and then change the code to following one

    .your-custom-class a{
    font-family:Aller!important;
    padding:3px;
    background-image: url(‘http://staging.scotiafishing.com/wp-content/themes/Scotia_Fishing/images/grey-button.png’)!important;
    color:#ffffff !important;
    background-repeat:no-repeat;
    background-size:100% 100%;
    padding:7px 11px 6px 11px;
    font-size:10px;
    }

    If that does not help, please post the link to your page and point out the button you would like to edit

    Best regards,
    Yigit

    #395745

    Hey NicRW!

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

    #top .social_bookmarks li a { font-size: 16px; }

    Regards,
    Yigit

    #395694

    Hey Michael!

    Please add following code to Quick CSS

    #top #wrap_all .av_header_transparency .sub_menu > ul > li > a {
    color: red; 
    }
    .header_color .sub_menu>ul>li>a {
    color: orange;
    font-size: 16px;
    }

    Cheers!
    Yigit

    #395666

    Hey DROR!

    Thank you for using Enfold.

    Add this code to the Quick CSS field then adjust the properties:

    #top .avia-slideshow-button {
    border-radius: 3px;
    text-transform: uppercase;
    padding: 15px 16px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    }

    Regards,
    Ismael

    #395585

    Topic: Links

    in forum Enfold
    Peatkay
    Participant

    Hi there,

    I’m having trouble with links.

    I want a specific link to change color. But no matter what I do, It will not change. Here’s the CSS:

    .home_box_left a{
    font-family:Aller!important;
    padding:3px;
    background-image: url(‘http://staging.scotiafishing.com/wp-content/themes/Scotia_Fishing/images/grey-button.png&#8217;)!important;
    color:#ffffff !important;
    background-repeat:no-repeat;
    background-size:100% 100%;
    padding:7px 11px 6px 11px;
    font-size:10px;
    }

    Please help!
    Thanks
    P

    #395507

    You can add border-radius to make the button rounded:

    #top .wpsc_buy_button {
        background: white;
        color: red;
        font-size: 22px;
        border: 2px solid gray;
        border-radius: 12px;
    }

    I tried logging to your site to check the Quick CSS but the user provided is not working.

    Best regards,
    Josue

    #395482

    Topic: Quick CSS not updating

    in forum Enfold
    saremcdee
    Participant

    Hi guys, I need your help please.

    I’ve been having this trouble for a while now I think, as there’s been many more occasions which I haven’t been able to update the quick CSS change on the general styling tab, haven’t been able to do this for a while actually.

    Basically what I’m trying to do here is change the font/size etc of the portfolio category sort. I used this code in quick CSS to change it, but as usual, nothing changes, even after purge varnish etc etc.

    #js_sort_items a { font-size: 16px; }

    As mentioned, this has been happening for a while now with any code I input into the quick CSS. IS there a max. amount of code you can put in this area? I have a feeling I might have maxed it.

    Thanks for the awesome theme otherwise! :) I’ve included login stuff below if you would like to have a look. Thank you

    #395480

    Hi mcraig77!

    thanks your using the theme.

    Size for the title:

    #top .aviaccordion-title {
    font-size: 20px;
    }
    

    Rotating title:

    #top .aviaccordion-title {
    -webkit-transform:rotate(-90deg); -moz-transform:rotate(-90deg); -o-transform:rotate(-90deg); transform:rotate(-90deg); 
    }
    

    Not all caps:

    #top .aviaccordion-title {
    text-transform: none;
    }
    

    afterwards change the letters also in the avia layout builder to small letters.

    Background color:

    #top .aviaccordion-preview-title-wrap {
    background: rgba(255,0,0,0.5)
    }
    

    use the first three numbers as the color code and the last one (0.5) is the opacity.

    Hope that helps! Let us know if you need any more help.

    Cheers!
    Andy

    #395451
    germancito33
    Participant

    Hi Kriesi team, I’ve noticed when I put the logo on the right and the menu below the quick css for menu size doesn´t work, hope you can help me, best regards.

    #395346

    Use the following code in Quick CSS:

    #top .wpsc_buy_button {
        background: white;
        color: red;
        font-size: 22px;
        border: 2px solid gray;
    }

    Adjust as needed.

    Best regards,
    Josue

    #395267

    In reply to: anchor links

    this is my style.css in my child theme:

    /*.iconbox .iconbox_content .iconbox_content_title {
    font-size: 40px!important;
    }*/

    .iconbox {
    opacity: 0.7;
    }

    /*table styling itinerary*/
    td {
    border-bottom-color: #ffffff!important;
    border-right-color: #ffffff!important;
    border-top-color: #ffffff!important;
    border-left-color: #ffffff!important;
    }

    I had the same code in my quick css but was not seeing changes. I am also not seeing some of my theme options taking effect – my hosting service says it’s “appears that there is a conflict in between how the theme loads its base CSS and the QuickCSS.” but ignore the fact that I dont’ have any conflicting css code regarding the boxed dimensions of the site, or other settings in the theme options that I am not seeing. Some of the quick css is showing, some not.

    I am really confused now. Should I start all over?
    thanks
    n

    #395244

    In reply to: icons for menue item

    This reply has been marked as private.
    #395194
    havi
    Participant

    Good morning guys!!! :)

    I may be doing something wrong because on a post these two buttons behave differently:

    [av_button label='Speak Spanish? Take a Listen!! ' link='manually,http://www.ondacro.com/programas/latam/marketing-latino' link_target='_blank' size='medium' position='center' icon_select='yes-right-icon' icon='ue8d2' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']

    [av_button label='Don't Miss these Actionable Tips!! ' link='manually,http://www.ondacro.com/programas/latam/marketing-latino' link_target='_blank' size='medium' position='center' icon_select='yes-right-icon' icon='ue8d2' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']

    I am attaching a link to the snapshot of how they are displayed. I tried modifying via the html side to the page, copying and modifying the button’s label, creating a new button and niente!! It just doesn’t like me since yesterday… I have seen it happen before on a client’s site but creating a brand new button would fix it. This one is more resistant.

    http://hispanic-marketing.com/tldownloads/buttonsonpost.png

    Oh mysteries of life….

    Thank you guys!!

    Warmly,

    Havi

    #395168

    Hey!

    Please change the code to following one

    .header-scrolled .av-main-nav > li > a {
    font-size: 15px!important;
    transition: font-size .3s ease-in-out;
    -webkit-transition: font-size .3s ease-in-out;
    -moz-transition: font-size .3s ease-in-out;
    -o-transition: font-size .3s ease-in-out;
    }
    #top #header .av-main-nav > li > a {
    font-size: 30px;
    transition: font-size .3s ease-in-out;
    -webkit-transition: font-size .3s ease-in-out;
    -moz-transition: font-size .3s ease-in-out;
    -o-transition: font-size .3s ease-in-out;
    }

    Best regards,
    Yigit

    #395166

    Thanks.

    Regarding 1. I am not sure the additional weights are loaded since adding this does not seem to have any effect.

    2. yes, ok. There is an option in the Advanced Styling to amend all headings at once, but it also affects the text / headings displayed in the Sliders, is that correct?
    So the only option to keep the sliders’ text let’s say White and have something else than the default colour for other headings (in the Main content or elsewhere), is to edit the colour of each “special heading”…etc manually?

    3. Footer widget titles are using the default font colour, size and are automatically in Capital letters, the idea was to find a way to play around these parameters

    Thanks

    #395156

    Hi alex5252!

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

    .header-scrolled .av-main-nav > li > a {
    font-size: 15px!important;
    }

    Best regards,
    Yigit

    #395149
    alex5252
    Participant

    I would like to reduce the font size of my menu on scroll so it still fits within the header. Right now it overlaps, how do I do that? My site is: http://perduemarine.com/

Viewing 30 results - 14,551 through 14,580 (of 18,733 total)