Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • #406703

    Hi all, I love the theme but have a few questions

    1. In the General Layout section it shows a green “Fullwidth Area” (Above content and sidebar). How do I access that? How can I put things there? It seems like a great spot for a banner, graphic, carousel, or even slideshow.

    2. How do I change the styling for colors of Prev and Next arrows on side of page? (I love those! Thank you)

    3. How can I get the featured images to display bigger? They are not the full width of the content area.

    http://test.theburningear.com/

    #407166

    Hi theburningear!

    1. I’m not sure I understand. Can you take a screenshot and highlight the area your referring to?

    2. Add this to your custom CSS.

    .avia-post-nav .label::before {
      color: blue !important;
      font-size: 40px !important;
    }

    3. Add this.

    .single .big-preview img {
      width: 100%;
    }

    Cheers!
    Elliott

    #407212

    Thanks for the info!

    1. See link for attachment.
    https://app.box.com/s/q50icrmgu7kdsnsyq4i38b78mppeuit6
    I’d like to utilize the area in green.

    2. Perfect, thank you.

    3. Again, thank you!

    1 more thing, how can I adjust the padding between elements in the sidebar. The right sidebar has a lot of space between elements/widgets.

    #407532

    Hi!

    1.) the first item you add in ALB editor will be shown in this part if you make it full size (or if it’s full size by default, e.g. a fullscreen slider).

    4.) Use this for the padding between the elements:

    .widget {
    padding-top: 5px;
    }
    

    and adjust as needed.

    Regards,
    Andy

    #407624

    1. What is ALB editor? Sorry, if you could explain this one a bit more. Thanks!

    4. Worked great, thanks.

    5. How can I adjust the line spacing on the left side nave menu? The lines are so far apart

    Thanks!

    #407878

    Hey!

    1. ALB = Advanced Layer Builder

    5. Please try the following in your Quick CSS:

    .html_header_sidebar #header .av-main-nav > li > a .avia-menu-text {
    line-height: 7px !important;
    }

    Cheers!
    Rikard

    #407889

    Thank you but can you please explain Advanced Layer Builder. Is there any documentation you can link me to? I am completely unfamiliar with it and cant find any info on the support page.

    #408327

    Hey!

    Please see here, https://vimeo.com/64927358.

    You can find other videos in our documentation, http://kriesi.at/documentation/enfold/videos/.

    Regards,
    Elliott

    #408554

    Thanks Elliott, now that I’ve studied the videos I see how to add it to a page. However, is there a way to add a full width element like that (ALS, Easy slider, etc) sitewide. You can see the image I’ve placed here
    http://test.theburningear.com/als-test/
    Can I implement across the whole site instead of just singular pages.

    2. How can I make featured images on the homepage full width?

    http://test.theburningear.com/

    Thank you!

    #408810

    Hey!

    Seems like you have added your image. Please add following code to Quick CSS

    div#advads-1763197882 img {
      width: 100%;
    }

    You just need to upload a bigger image or it will look blurry

    Cheers!
    Yigit

    #409018

    Hmm, that code didn’t seem to do anything. I tried clearing cache as well.

    Also, how can I make featured images on the homepage full width? On individual pages they are full width but on home page they dont go all the way.
    http://test.theburningear.com/

    Thank you!

    #409835

    Hey!

    Please add following code to Quick CSS as well

    .small-preview img, .big-preview img { width: 100%; }

    and add !important rule to the previous code i posted as following

    div#advads-1763197882 img {
      width: 100% !important;
    }

    Regards,
    Yigit

    #410109

    Thanks Yigit! The full width pictures work great now.

    I’m still not getting any change with the div#advads code. I’d like to have the ad show up in the green full width area shown here
    https://app.box.com/s/q50icrmgu7kdsnsyq4i38b78mppeuit6
    Isn’t there some place I can hook in an ad or embed sitewide?

    Thanks!

    #410183

    Hey!

    Do you mind creating a temporary admin login and posting it here privately so we can look into it?

    Best regards,
    Yigit

    #410242
    This reply has been marked as private.
    #410512

    Hi!

    Where did you added your custom image?

    Regards,
    Yigit

    #410613

    Its through the Advanced Ads plugin. But I am open to using other methods

    #411359

    Hey!

    Use a hook on functions.php:

    add_action('ava_after_main_container', 'ava_after_main_container_mod');
    function ava_after_main_container_mod() {
    	echo '<a href="http://www.lightsandmusic.com/"><img class=" size-full wp-image-51945 aligncenter" src="http://test.theburningear.com/media/2015/03/TEST-Leaderboard.png" alt="TEST-Leaderboard" width="728" height="90"></a>';
    }

    Regards,
    Ismael

    #411366

    Hi Ismael, unfortunately that code broke the whole site when I put it in.

    Parse error: syntax error, unexpected T_FUNCTION in /nfs/c07/h04/mnt/178875/domains/test.theburningear.com/html/wp-content/themes/enfold/functions.php on line 520

    Is there a specific place it the file it needs to go? I put it at the end.

    #411819

    Hey!

    It actually works fine on our installation. Add it at the very bottom of the functions.php file. In few cases, text editors automatically converts symbols like apostrophe, single quotation marks etc to their character entity code so you have to check for that one. Get the code here: http://pastebin.com/5pDyduHG

    Best regards,
    Ismael

Viewing 20 posts - 1 through 20 (of 20 total)
  • You must be logged in to reply to this topic.