-
AuthorPosts
-
March 5, 2015 at 9:53 pm #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.
March 6, 2015 at 6:15 pm #407166Hi 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!
ElliottMarch 6, 2015 at 7:01 pm #407212Thanks 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.
March 7, 2015 at 7:03 pm #407532Hi!
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,
AndyMarch 8, 2015 at 5:12 am #4076241. 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!
March 9, 2015 at 6:52 am #407878Hey!
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!
RikardMarch 9, 2015 at 8:52 am #407889Thank 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.
March 9, 2015 at 6:26 pm #408327Hey!
Please see here, https://vimeo.com/64927358.
You can find other videos in our documentation, http://kriesi.at/documentation/enfold/videos/.
Regards,
ElliottMarch 10, 2015 at 12:58 am #408554Thanks 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!
March 10, 2015 at 1:48 pm #408810Hey!
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!
YigitMarch 10, 2015 at 7:09 pm #409018Hmm, 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!
March 11, 2015 at 2:13 pm #409835Hey!
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,
YigitMarch 11, 2015 at 9:21 pm #410109Thanks 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!
March 11, 2015 at 11:28 pm #410183Hey!
Do you mind creating a temporary admin login and posting it here privately so we can look into it?
Best regards,
YigitMarch 12, 2015 at 1:19 am #410242This reply has been marked as private.March 12, 2015 at 3:56 pm #410512March 12, 2015 at 6:09 pm #410613Its through the Advanced Ads plugin. But I am open to using other methods
March 14, 2015 at 3:02 am #411359Hey!
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,
IsmaelMarch 14, 2015 at 3:35 am #411366Hi 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.
March 16, 2015 at 3:52 am #411819Hey!
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 -
AuthorPosts
- You must be logged in to reply to this topic.