Viewing 30 results - 137,551 through 137,580 (of 142,898 total)
  • Author
    Search Results
  • #184731

    Isn’t there a custom walker, so that HTML works in menu items in general?

    #184727

    Hey Peter,

    I change the code in line 38 but it didn´t work: Here

    Regards,
    Bruno

    #184725
    RevolutionGroup
    Participant

    Hi

    I have used the following code to hide the blog sidebar on the ipad (and any device where the sidebar won’t comfortably fit):

    @media only screen and (max-width: 1023px) {
    
    .template-blog .sidebar{
    	display: none;
    }
    .template-blog .content {
    	width: 100% !important;
    }}

    This works how I would like except that I would like to remove the grey vertical lines on the right (for the top half) and on the left (for the bottom half) if possible. How can I do that?

    Here is how it looks currently: http://tinyurl.com/phzlj2u

    Thanks,
    Rob

    #184720

    Hey Bruno!

    You can use the “Forum” widget area if you want to display certain widgets on all forum pages. If you want to display a certain sidebar on all forum pages you need to modify sidebar.php. Open up the file and replace

    
            if(!empty($the_id) && is_singular())
            {
                $custom_sidebar = get_post_meta($the_id, 'sidebar', true);
            }
    

    with

    
            if(!empty($the_id) && is_singular())
            {
                $custom_sidebar = get_post_meta($the_id, 'sidebar', true);
            }
            else if(is_post_type_archive('forum') || is_singular(array('forum','topic','reply')))
            {
                $custom_sidebar = 'Forum';
            }
    

    Replace “Forum” with your custom sidebar name if you don’t want to use the default “Forum” widget area for the sidebar.

    Regards,
    Peter

    #184709

    In reply to: top link missing

    Perfect answer thanks. I never thought of that. I will probably add it back in for continuity sake but thanks for the info

    #184675

    Hi!

    You can add the .home selector:

    .home .fixed_header #main {
    padding-top: 0;
    }
    
    .home .header_bg {
    opacity: .1;
    filter: alpha(opacity=10);
    }

    Best regards,
    Ismael

    #184671

    Hey!

    Please add this on your custom.css or Quick CSS:

    #header {
    background-color: white;
    }
    
    #top .social_bookmarks li a {
    display: initial\9;
    }

    Best regards,
    Ismael

    #184660

    Hi!

    You can do something like this. Edit the menu item then change the “Navigation Label” to something like this:

    Online Print <span class="menu-second-line">and Content Writing</span>

    Add this on your custom.css or Quick CSS:

    .menu-second-line {
    clear: both;
    display: block;
    position: relative;
    top: -70px;
    }

    Best regards,
    Ismael

    Hi!

    That ‘top alignment’ is the default CSS behavior for floated elements. Although it is possible, that would require a deep modification to the Theme, unfortunately i think that is out of the scope we can offer. If you really need it try hiring a freelancer for the job.

    Cheers!
    Josue

    #184654

    In reply to: top link missing

    Hi!

    It is disabled because most mobile browsers allow users to simply tap the menu bar at the top of the screen to scroll back to the top of a webpage, the scroll to top button is not necessary.

    Cheers!
    Ismael

    This reply has been marked as private.
    #184646

    In reply to: Google Adsense Dots

    Hey!

    Add this code to the Quick CSS:

    #top #wrap_all ins:before {
    display: none !important;
    }

    Cheers!
    Josue

    insentra
    Participant

    Currently when an image and a text element are on the same line the elements aligin to the top, what css can we add so that if the text takes up more vertical space than the image the image is vertically aligned to the text. Also vice versa when the text takes up vertically less space than the image the text is vertically aligned to the image.

    #184622

    Topic: Google Adsense Dots

    in forum Enfold
    ErikManger
    Participant

    Hi,

    Whenever I embed a Google Ad to the theme, it places 2 or 3 black dots above the ad. How do I remove these? Rather annoying.

    I found this CSS code from someone else requesting,
    #top #wrap_all ins::before {
    content: “”;

    It works – partially. It leaves blank space and pushes the ad down, and when viewing on mobile – the dots reappear.

    #184563

    Hey!

    1.) Edit the button layer then go to Attributes panel. Give it a unique id like “learn-more-button. Use it on your Quick CSS field.

    #learn-more-button:hover {
    color: blue;
    background: white;
    }

    2.) Please give it a css selector id or class.

    3.) You can use this for the black events button:

    .avia-button.avia-icon_select-yes.avia-color-custom.avia-size-small.avia-position-center {
    background-color: red;
    border-color: red;
    color: blue;
    }

    4.) Use this:

    .main_color.iconbox_top .iconbox_icon:hover {
    background-color: blue;
    }

    Best regards,
    Ismael

    #184561

    Hey covaun!

    You can use the Fullscreen Slider or the LayerSlider then add this on your custom.css or Quick CSS to move the content upwards.

    .fixed_header #main {
    padding-top: 0;
    }

    You can change the transparency of the header using this:

    .header_bg {
    opacity: .1;
    filter: alpha(opacity=10);
    }

    Regards,
    Ismael

    #184545

    Yes! Thank you so much! Been struggling with this one for quite some time. Thanks again for your help, much appreciated.
    Cheers

    #184534

    it seems as if the html tags are stripped out in the menus, tried to have the menu items in two lines, too – without success.

    #184532

    Hi there,

    I have attached a screenshot of what i am trying to do. I just want the menu titles to be on two lines are they are quite long titles.

    http://bit.ly/19voS87

    ScreenShot

    Cheers

    #184518

    In reply to: top link missing

    great I will give that a try. But before I do, can you explain the benefit or reasoning for this native behavior. It is visible all the time otherwise, and this affects phones that are in landscape mode, which is of course why I want to change it.

    But before I do I am curious about why it is intentionally turned off between that pixel size. Seems strange without know why.

    #184512

    Thanks! But how do you calculate the percentage of the left margin and the percentage of the top?

    #184508

    In reply to: top link missing

    Hey!

    It was made intentionally. But you can add following code to Quick CSS and display it between 480-768px as well

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

    Cheers!
    Yigit

    #184499

    Hey!

    For default logo with “non-fixed header with social icons and additional navigation” header type, custom css code would be

    div .logo { left: 41%; }
    .main_menu { left: 31%; margin-top: 40px; }
    .main_menu .menu ul { top: 66%; }

    Best regards,
    Yigit

    #184498
    covaun
    Participant

    I’m trying to create a single image landing page with the menu and logo on top image the image. Like this: (link)

    Can the be done?

    Thanks

    #184496

    Can you explain me the basics? Logo = 270 x 130 px, header height from top to slider = 180 px. I have to adjust sizes myself, I have understanding of CSS. Menu width = max. 960 px.

    Logo (centered)

    Menu item Menu item Menu item Menu item Menu item Menu item Search (centered menu).

    Slider

    #184492

    Hi finessecreative!

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 480px) { .social_header .phone-info { top: 99px; font-size: 18px; left: 10px; }}

    Best regards,
    Yigit

    #184487

    Hey!

    Can you post the link to your website as well? The link you provided in your other topic is still not Enfold

    Cheers!
    Yigit

    #184484

    Hey IcosMediaKunden!

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

    #top #menu-item-search.menu-item-search-dropdown>a:after { content: 'Suche'; }

    Regards,
    Yigit

    #184474
    IndikatorDesign
    Participant

    Hello,

    have setup my Forum. As you can see is on the Forum-Frontpage the sidebar included. I set this in the forum-page.

    But how can I setup the same sidebar for all topics e.g. ??

    Regards

    #184459
    This reply has been marked as private.
Viewing 30 results - 137,551 through 137,580 (of 142,898 total)