Viewing 30 results - 6,391 through 6,420 (of 18,742 total)
  • Author
    Search Results
  • #1001402
    stefan1967
    Participant

    Hello,

    I use enfold 4.2 and on the shop page I use the sidebar to show the product categories (works really great for me!)
    But is it possible to highlight the first category layer (with larger font or bold) because this would make it easier for my customers to find the right category and the associated subcategories and products.
    But I want to highlight only the first layer – so only categories which do not have parent categories.

    Many thanks!

    regards stefan

    webWahine
    Participant

    Hello
    I’ve looked at tons of posts and have al ot of code but there are two things that are eluding me here, please (I’ve used basic colours to show what is being edited – they are just there as helpers for now).
    1) the burger is not centered – it’s off to the right a bit – I’ve tried all sorts of css but can’t seem to get it exactly in the middle.
    2) Once the burger is open, I’ve set the li to align top but I want it below the X

    Here’s my working code, below. Thanks in advance!

    	/* header logo and burger menu **********************************************/
    	
    	
    	/* height of both logo and main menu area */
    	
    	.responsive #top #wrap_all .container {
    	    height: 20px !important;
    		background: green !important; /* just to see what elemnt is targetted */		
    	}
    	  
    	.responsive #top .logo, 
    	  .responsive #top .logo a {
      		width: 100% !important;
      	    height: auto !important;		
    	    display: block !important;
    	    margin: 0 auto !important;
    		background: red !important; /* just to see what elemnt is targetted */
    	  }
    
    	  .responsive #top .logo img {
    		padding: 20px !important;
    	    margin: 0 auto !important;
    	  }
    	  
    	  /* adjusts the burger within main menu area */
    	  
    	  .av-main-nav-wrap ul {
    	  	top: 0px;
    	  }
    
    	  .responsive #top #wrap_all .main_menu {
    	    position: static;
    		height: auto !important;
    	  }
    
    	  .responsive #top .av-logo-container #avia-menu {
    	    margin: 0 auto !important;
    	    width: 30px !important;				
    	  }
    
    	  .responsive #top .av-logo-container .avia-menu {
    	    width: 100%;
    	    text-align: center !important;
    		background: blue !important; /* just to see what elemnt is targetted */
    	  }
    
    	  #top #wrap_all #header .av-small-burger-icon a {
    	    height: auto !important;
    	    line-height: 3 !important;
    	  }	
    	  
       	/* burger closed */
    	
       	.header_color .av-hamburger-inner,
       	.header_color .av-hamburger-inner::before,
       	.header_color .av-hamburger-inner::after {
       		background-color: #fff !important;
       	}
      
          /* burger open */
    	
      	#top .header_color .is-active .av-hamburger-inner, 
      	#top .header_color .is-active .av-hamburger-inner::before, 
      	#top .header_color .is-active .av-hamburger-inner::after {
      	    background-color: #fff !important;
      	}
    	 
    	 /* tweak the vertical position of the menu when open */
     
    	 #av-burger-menu-ul {
    		 vertical-align: top; /* originally middle */
    		 background: black !important; /* just to see what elemnt is targetted */
    	 }
    
    	 #av-burger-menu-ul li {
    	     text-align: center;
    		 padding: 5px 0px !important;
    	 }
      
    	 .html_av-overlay-full #top #wrap_all #av-burger-menu-ul li a {
    	 	font-size: 12px;
    	 	line-height: 16px;
    	  	color: #afa89c !important;
    	  }
    
    	 .html_av-overlay-full #top #wrap_all #av-burger-menu-ul li a:hover {
    		color: #fff !important;
    	  	opacity: 1 !important;
    	  }		 
     
    	 .html_av-overlay-full #top #wrap_all #av-burger-menu-ul li.current-menu-item .avia-menu-text {
    	   color: #fff !important;
    	 }
     
    #1001362

    Hey akapoun,

    Please check out below, having all the details:

      /*
     * Author: http://stuffandnonsense.co.uk/blog/about/hardboiled_css3_media_queries/
     */
    
    /* Smartphones (portrait and landscape) ----------- */
    @media only screen 
    and (min-device-width : 320px) 
    and (max-device-width : 480px) {
    /* Styles */
    }
    
    /* Smartphones (landscape) ----------- */
    @media only screen and (min-width : 321px) and (max-device-width : 480px) {
        h1 {font-size: 1em}
        h4 {font-size:0.7em;}
        p {font-size: 0.3em;}
    
    }
    
    /* Smartphones (portrait) ----------- */
    @media only screen and (max-width : 320px) {
    /* Styles */
        h1 {font-size: 1em}
        h4 {font-size:0.7em;}
        p {font-size: 0.3em;}
    }
    @media only screen and (max-width: 700px) {
        h1 {font-size: 1em; }
        h4 {font-size:1em}
        p {font-size: 1em}
        .intro li {font-size: 1em;}
    }
    /* iPads (portrait and landscape) ----------- */
    @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
        h1 {font-size: 2em}
        h4 {font-size:1em}
        p {font-size: 1em}
        .intro li {font-size: 1em;}
    
    }
    @media only screen and (min-device-width : 768px) and (max-device-width : 1224px) {
        h1 {font-size: 2em}
        h4 {font-size:1em}
        p {font-size: 1em}
        .intro li {font-size: 1em;}
    
    }
    
    /* iPads (landscape) ----------- */
    @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
        h1 {font-size: 2em}
        h4 {font-size:1em}
        p {font-size: 1em}
        .intro li {font-size: 1em;}}
        .icon {margin-top: -30px;}
    
    
    /* iPads (portrait) ----------- */
    @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
        h1 {font-size: 2em}
        h4 {font-size:1em}
        p {font-size: 1em}
        .intro li {font-size: 1em;}
        .icon {margin-top: 100px;}
    
    /* Styles */
    }
    @media only screen and (min-width : 724px) and (max-width: 1260px){
        h1 {font-size:5em}
        h4 {font-size:1em}
        p {font-size: 1em}
        .intro li {font-size: 1em;}
        .icon {margin-top: 90px;}
    }
    /* Desktops and laptops ----------- */
    @media only screen and (min-width : 1224px) {
        .icon {margin-top: 300px;}
        p {font-size: 5em;}
    }
    
    /* Large screens ----------- */
    @media only screen 
    and (min-width : 1824px) {
    /* Styles *//* Styles */
    }
    
    /* iPhone 4 ----------- */
    @media
    only screen and (-webkit-min-device-pixel-ratio : 1.5),
    only screen and (min-device-pixel-ratio : 1.5) {
    /* Styles */
    }

    Best regards,
    Basilis

    #1001265

    Hey Erin,

    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 #wrap_all #av-burger-menu-ul > li { opacity: 1; }
    
    

    Not really sure why but currently opacity is set to 0. We would also recommend decreasing font size of mobile menu as currently they are a bit too large :)

    Best regards,
    Yigit

    #1001231

    Topic: Fonts and structure

    in forum Enfold
    peterolle
    Participant

    Hello. I am about to migrate a website to Enfold and I am having some problems with my local tests.

    As I have to edit over 3000 posts to use the correct short codes I was trying to use a general code instead.

    For example this:

    
    [av_iconlist position='right' iconlist_styling='av-iconlist-small' custom_title_size='' custom_content_size='' font_color='' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#149ce0' custom_border='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-2o3q6tp' admin_preview_bg='']
    [av_iconlist_item title='One: XXXXXXX' link='manually,https://site/tag/one-XXXXXXX/' linktarget='' linkelement='' icon='ue827' font='entypo-fontello' av_uid=''][/av_iconlist_item]
    [av_iconlist_item title='Two: XXXXXXX' link='manually,https://site/tag/two-XXXXXXX/' linktarget='' linkelement='' icon='ue827' font='entypo-fontello' av_uid=''][/av_iconlist_item]
    [av_iconlist_item title='Three: XXXXXXX' link='manually,https://site/tag/three-XXXXXXX/' linktarget='' linkelement='' icon='ue827' font='entypo-fontello' av_uid=''][/av_iconlist_item]
    [av_iconlist_item title='Four: XXXXXXX' link='' linktarget='' linkelement='' icon='ue827' font='entypo-fontello' av_uid=''][/av_iconlist_item]
    [/av_iconlist]
    

    Can be done with just this:

    <div class="icon-tags">
    <a href="#" class="icon tags"> One: XXXXXXX</a>
    <a href="#" class="icon tags"> Two: XXXXXXX</a>
    <a href="#" class="icon tags"> Three: XXXXXXX</a>
    <a class="icon tags"> Four: XXXXXXX</a>
    </div>
    

    Having this in my CSS I can replicate the short code icons list.

    .icon-tags{
      float:right;
      text-decoration: none;
    }
    
    .icon:before {
      display: inline-block;
      font-family: 'entypo-fontello';
      text-decoration: none;
      speak: none;
    }
    
    .tags:before {
      content: "\E827";
      color:#ff33cc;
    }
    

    That way if you update the theme removing the icon list or I change theme again, I will have no problems like I have right now.

    1- Fontello is called when using the short code but it is not when using my HTML. How to fix that ?
    2- Do you recommend another way of doing this ?

    The same happens to videos, I have 3 videos at the end of each post and I was thinking to use:

    [av_one_third first]
    [av_video src='http://www.youtube.com/watch?v=XXXXXX' mobile_image='' attachment='' attachment_size='' format='16-9' width='16' height='9' conditional_play='' av_uid='']
    [/av_one_third]
    [av_one_third]
    [av_video src='http://www.youtube.com/watch?v=XXXXXX' mobile_image='' attachment='' attachment_size='' format='16-9' width='16' height='9' conditional_play='' av_uid='']
    [/av_one_third]
    [av_one_third]
    [av_video src='http://www.youtube.com/watch?v=XXXXXX' mobile_image='' attachment='' attachment_size='' format='16-9' width='16' height='9' conditional_play='' av_uid='']
    [/av_one_third]

    Is there a way to use HTML or other thing so if you remove the short code in the future or I change theme, everything will still works ?

    I am trying to avoid future problems I am having right now for changing theme. That way if you remove short codes everything will keep working.

    Thank you.

    #1001134

    Hi Joel,

    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_1 .av-parallax {
            background-size: contain !important;
            background-attachment: scroll !important;
        }
        #top #wrap_all .av-inherit-size .av-special-heading-tag {
            font-size: 34px;
        }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1001094
    akapoun
    Participant

    Hi!
    Heading of h4 should be on mobile smaller.
    How can I set this?

    #1001070

    Hey tma8,

    Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 479px) {
    #footer .social_bookmarks a::before {
      font-size:26px;
    }
    }

    Best regards,
    Rikard

    #1001064

    Hi,

    Great, glad you found a solution and thanks for sharing.

    About font sizes, it’s not really theme specific but maybe something like this would help you out? https://css-tricks.com/snippets/css/fluid-typography/

    Best regards,
    Rikard

    #1001028

    Hey onlylettersandnumbers,
    Please try this code in the General Styling > Quick CSS field:

    #scroll-top-link::before {
      content: "\e806";
      font-family: entypo-fontello;
      color: red;
      font-size: 48px !important;
    }
    #scroll-top-link {
      background-color: transparent !important; 
      border: none !important; 
    }

    2018-08-23_224926

    Best regards,
    Mike

    #1000990

    Hey Elisabethkaasa,

    Add this to quick css:

    .slide-entry-excerpt.entry-content{
    font-size:15px!important;
    }
    
    aside.sidebar{
    font-size:15px!important;
    }

    Best regards,
    Jordan Shannon

    #1000983
    Elisabethkaasa
    Participant

    Hi
    I’d like to change the font size on my blog posts and blog sidebar to 15.
    I found a css code on this support forum that helped me change the blog posts itself;

    .post .entry-content p {
    font-size: 15px;
    }

    On my homepage though I have the most recent blog posts displayed partly, but they are still in a larger font (18), and the sidebar on the blog page also has a larger font. How can I change those too?

    Thanks!

    Elisabeth

    #1000920

    Hey akapoun,

    Add this to quick css:

    #footer #menu-main-menu a{
    font-size:18px!important;
    }

    Best regards,
    Jordan Shannon

    #1000916

    In reply to: Table size

    Hey Marespadasirles,

    1. It is not clear what exactly you like to increase in the table but I’m assuming you are referring to the font size. If so please use the below CSS or else elaborate the issue so we can help you better :)

    .avia-table td b {
       font-size: 16px;
    }

    2. Please check the screenshot attached. If that is the separator line you are talking about it is the top border of the color section which can be disabled from the color section options.

    Best regards,
    Vinay

    #1000905

    Yes, you can see this at the following url in the private content area.

    I manually positioned the text to try to move it back left under the primary navbar item.

    #avia-menu > li > a:after {
    content: attr(title);
    position: absolute;
    top: 15px;
    left: 12px;
    color: #00add8;
    font-size: .75em
    }

    #1000796

    Thanks for getting back to me, but I’ve just found the answer in your forum:

    https://kriesi.at/support/topic/flexible-font-size-smaller-sizes-in-pull-down-menu/#post-995059

    Apologies, i did a quick search before posting the question, but clearly I didn’t search well enough!

    Next question would be, can you assign the flexible font sizes (vw) to body text or heading styles in the css code?

    #1000732
    akapoun
    Participant

    hi!
    At the bottom of my site I have 2 columns widget are at the footer.
    On left side the menu is displayed, on right side a text element with contact information.
    I want the text of the left side to have the same formatting (size…) like the text element on the right side.
    How can I set this?

    Hey Sorprentas,
    I took a look at your source code and only found one H1, for desktop, I assume you have since removed the mobile H1 element to remove this error.
    I recommend leaving the desktop H1 and adding a plain text title for mobile with no assigned H style, but instead use font size to make it look big for your real visitors.
    Google only looks at your source code once for all device sizes, and it will see your desktop H1, while your mobile visitors will see the larger text and perceive it as a H1.
    I hope I have explained this well.

    Best regards,
    Mike

    #1000687

    Hi,
    For the image mouse-over caption, please try this css:

    .av-image-caption-overlay-center p {
        font-size: 30px !important; 
    }

    Best regards,
    Mike

    #1000578

    Thanks Mike, that code worked for the easy slider caption.
    Is there another code for Image captions – they are still not responding to font size changes?

    Kind Regards
    Mel

    #1000566

    Hey Haycreations,
    I tried to take a look, but I was unable to login, please check the login info.
    Please try this code in the General Styling > Quick CSS field:

    
    #top #wrap_all .avia-caption-content p {
    font-size: 30px !important;
    }

    Best regards,
    Mike

    #1000553
    Haycreations
    Participant

    I have GeoSans custom font installed on my site.
    I’m trying to increase the Font size for Easy Slider Caption text (body) but it seems to be unresponsive. Instead of increasing the font it seems to be increasing line spacing.
    Caption Font size (see product images on homepage towards the bottom) is also not responsive to font size changes.

    Please advise.

    #1000538

    well –
    1 you had to know the hex-code of the icon you like to use
    2 you had to know the name of the icon-set
    3 you had to know the menu-item id
    4 this comes to quick css:

    #menu-item-2467 a::before {
        content: "\e8c9";
        font-family: entypo-fontello;
        display: inline-block;
        font-size: 30px;
        padding-right: 5px;
        vertical-align: middle;
        color: #f00;
    }

    5 you must decide the style ( color of the icon-font , font-size etc)
    see here with my impressum link : https://webers-testseite.de/

    if you have transparency pages it might be a good idea to define a color for it:

    .header-scrolled #menu-item-2467 a::before {
    color: #333
    }
    constanzehosp
    Participant

    Hello,
    thanks for making a great theme like “enfold”. I’m realy lucky with this theme.
    For my current webpage i woud like to show a bunch of pictures in a masonry-type grid-gallery. Unfortunatly i can not choose a masonry-gallery, ’cause i wanna combine a gallery-appearence with categories-options.

    Luckily i found the portfolio-grid. Here i can kind of adapt the look of a masonry-gallery by adding post-pictures to each portolio-entry.
    Is it possible to make the hovered Titles and Excerpts from the Portfolio-Grid look like the hovered Titles of a masonry-gallery?
    You can see examples on my page. http://constanzehosp.com/#schmuck

    On top you see the Portfolio-Grid (called: Schmuck), that i’ve already changed into the right direction with some CSS codes.
    If you scroll down a few lines, you will see a Masonry-Gallery (called: Ringe). I want the hover effect on the Portfolio-Grid to be the same as you see on the Masonry-Gallery. (A little zoom of the picture, A darkened Background, White Text in Front comes up).
    Best would be, if that function would be still working on mobil advices too.

    The CSS i have added so far looks like this:

    .grid-content {
        margin-top: 0px;
    }
    .grid-entry:hover .grid-content {
        opacity: 1;
    }
    .grid-content {
        opacity: 0;
    }
    
    .grid-content, .grid-content * {
        background: transparent;
       color:black!important
    }
    
    h3.grid-entry-title {
        font-size: 20px;
    }
    .grid-content {position: absolute; top: 00px; background-color:rga(255,255,255,0.5);}
    
    .avia-arrow {display:none}
    • This topic was modified 7 years, 8 months ago by constanzehosp.
    #1000174

    In reply to: Font Troubles

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    .special_amp {
        font-family: inherit;
        font-style: normal;
        font-size: inherit;
        line-height: inherit;
        font-weight: inherit;
    }

    Best regards,
    Rikard

    #1000158

    Hi,

    Thanks for the link. Please try the following in Quick CSS under Enfold->General Styling:

    #footer #text-6 p, #footer #text-4 p {
        font-size: 8px;
        line-height: 8px;
    }

    Best regards,
    Rikard

    #1000155

    Hey Marie-Claude,

    Please try the following in Quick CSS under Enfold->General Styling:

    1.

    .home .post-title a {
      color:#000;
      font-size:12px;
    }

    2.

    .page-id-62 .av-masonry-entry-title {
      font-weight:100;
    }

    Best regards,
    Rikard

    #1000132

    Here was our solution for the deprecated combo widget. We customized the css so that the widget would closely resemble Enfold’s deprecated widget.

    1. Install and activate the “WP Tab Widget” plugin from the WordPress repository.
    2. Go to Wp Admin > Appearance > Widgets and drag the “WP Tab Widget” where you want it to appear on your site.
    3. Add the CSS below to your Quick CSS or style.css file. (If you use Quick CSS for testing, you should move the new css to your style.css to make it permanent.)
    4. Customize the plugin settings to your taste (we did not program the css to include the tags tab, only recent, popular, and comments)

    /* WP Tab Widget Avia Combo Widget Replacement */
    .wpt_widget_content { border: none !important; }
    
    .wpt_widget_content .inside { 
        border-top: 1px solid #e1e1e1 !important; 
        margin-top: -1px !important;
        padding-top: 0px !important;
    }
    
    .wpt_widget_content .tab-content li {
       padding-left: 0px !important;
       padding-right: 0px !important;
       padding-bottom: 10px !important;
    }
    
    .wpt_thumbnail, .wpt_avatar {
        margin-right: 9px !important;
        padding: 3px !important;
        float: left !important;
        margin-top: 4px !important;
        margin-bottom: 4px !important;
        border-style: solid !important;
        border-width: 1px !important;
        height: 36px !important;
        width: 36px !important;
        display: block !important;
    }
    
    .wpt_widget_content .entry-title a {
        color: #222222 !important;
        overflow: hidden !important;
        font-size: 13px !important;
        margin-top: 0px !important;
        font-weight: bold !important;
        margin-top: 2px !important;
        display: block !important;
        line-height: 20px !important;
    }
    
    .wpt_comment_content p {
        color: #222222 !important;
        overflow: hidden !important;
        font-size: 12px !important;
        margin-top: 0px !important;
        font-weight: bold !important;
        margin-top: 2px !important;
        display: block !important;
        line-height: 20px !important;
    }
    
    .wpt_widget_content .wpt-postmeta {
        font-size: 11.5px !important;
    }
    
    .wpt_comment_meta {
       margin-top: 4px !important;
       margin-bottom: 4px !important;
       line-height: 0px !important;
    }
    
    .wpt_comment_meta a {
        font-size: 11.5px !important;
        font-weight: normal !important;
        line-height: 18px !important;
    }
    
    .wpt_thumbnail .wp-post-image {
        width: 28px;
        height: 28px;
        object-fit: cover;
    }
    
    .wpt_widget_content .tab-content li {
        border: none !important;
        margin: 0px !important;
    }
    
    .has-3-tabs {
       width: 100.3% !important;
    }
    
    .has-3-tabs li {
       clear: none !important;
    }
    
    .has-3-tabs a {
       border: none !important;
       background-color: #fff !important;
       font-weight: normal !important;
       font-size: 12px !important;
       line-height: 24px !important;
    }
    
    .has-3-tabs a:hover {
       color: #666666 !important;
    }
    
    .has-3-tabs .selected {
       border-bottom: 2px solid #666;
    }
    
    .has-3-tabs .selected a {
       font-weight: bold !important;
       color: #666666 !important;
    }

    Tip: The plugin determines popular posts based on the plugin’s view counter. When the plugin is first installed, all your posts will have a 0 views value. Until you or your visitors start hitting pages on your site, the plugin will randomly choose posts to show in the popular posts tab. If you do not want to wait for traffic to your site, or you want to replicate the list of popular posts you had previously before Kriesi removed the combo widget,

    0. Make sure you have your database backed up, just in case!
    1. Go to WP Admin > Posts, mouseover the title of your posts, and look at the URL in your browser’s status bar (at the bottom of your browser window)
    2. Make note of the post_id (the url will include “post=x”) for the post whose view count you want to modify (do this for each post you want to modify)
    3. Go into your web host’s control panel, to phpMyAdmin > youraccount_wp* (your WP database) > wp*_postmeta > Search (tab)
    4. Query for the post_id assigned to the post you want to raise or lower in the popular posts widget.
    5. Locate the “_wpt_view_count” meta_key, then change the “meta_value”. The higher the number, the higher it will appear in the popular posts tab.
    6. Repeat steps 3-5 for each post.

    Ta da! Your beloved combo widget is back. Enjoy!

    #1000065
    This reply has been marked as private.
    #1000041

    In reply to: Blog page

    Hi Cynthia45,

    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

    
    .post .entry-content p {
      font-size: 18px;
    }
    

    You will need to modify the includes/loop-index.php to move the author under the title.

    If you need further assistance please let us know.

    Best regards,
    Victoria

Viewing 30 results - 6,391 through 6,420 (of 18,742 total)