Tagged: x
-
AuthorPosts
-
January 13, 2017 at 10:28 pm #1329528
gobeyondesignParticipantaaapoolsfred.com
I’d like to make the widget in the footer1 25% of the width and the footer 2 75% of the width.
How do I do this? Thank you
Michele
January 14, 2017 at 12:55 am #1329632
FriechModeratorHi Michele,
Thanks for writing in! Please add this on your Custom Global CSS on Customizer.
.x-colophon.top .x-container .x-column.x-1-2:first-of-type {width: 23%;} .x-colophon.top .x-container .x-column.x-1-2:last-of-type {width: 73%;}Hope it helps, Cheers!
January 17, 2017 at 10:11 pm #1334489
gobeyondesignParticipantSomething different has happened – there is a rounded border around the items in my menu – how do I remove this?
January 18, 2017 at 1:17 am #1334633
ChristopherModeratorHi there,
Please add following code in Customize -> Custom -> Global CSS :
.x-navbar .desktop .x-nav>.x-active>a>span, .x-navbar .desktop .x-nav>.current-menu-item>a>span { border-color: transparent; }Hope that helps.
January 18, 2017 at 10:09 pm #1336162
gobeyondesignParticipantaaapoolsfred.com/about-us
how do I make the top image over the transparent background, I tried using z-index: 999999; – that didn’t work.
AND
How do I make the black translucent background over the picture go from the very top (under the picture with the wave) to the very bottom – where the bright blue three column bar is?
Thank you for your help!
January 19, 2017 at 1:13 am #1336294
FriechModeratorHi There,
The top image is already over the transparent background, please clarify.
Remove the padding-bottom of your second content-band. Try adding a class pbn on it.
Let us know how it goes.
Thanks.
January 19, 2017 at 1:16 pm #1337093
gobeyondesignParticipantTake a look at what it looks like in Safari. I’m talking about the black background (50% transparency) behind the text column.
January 19, 2017 at 1:46 pm #1337161
gobeyondesignParticipantso this code:
.x-colophon.top .x-container .x-column.x-1-2:first-of-type {width: 23%;}
.x-colophon.top .x-container .x-column.x-1-2:last-of-type {width: 73%;}is messing up the tablet and mobile view – it makes it 23% and 73%
how do I fix this PLEASE HELP!
Michele
January 19, 2017 at 3:26 pm #1337309
FriechModeratorHi There,
Add
z-index: 1;on the container.Please update the given css code to this:
@media (min-width: 980px) { .x-colophon.top .x-container .x-column.x-1-2:first-of-type {width: 23%;} .x-colophon.top .x-container .x-column.x-1-2:last-of-type {width: 73%;} }Thanks.
February 1, 2017 at 2:46 pm #1354221
gobeyondesignParticipantI upgraded the code and I still get the same thing – I don’t want the columns to be 23 & 73% for tablet and mobile view – only for the desktop – because it moves it down to another row. And its ugly. See my attached image.
February 1, 2017 at 8:54 pm #1354685
LelyModeratorHi There,
Upon checking the source code, the CSS is not updated yet. See this:http://screencast-o-matic.com/watch/cbnnnsQSli
If you’re sure that you have updated it already, please try to clear cache and then check again.February 7, 2017 at 5:23 pm #1361918
gobeyondesignParticipantI have changed the coded to what Freich recommended and it did not fix the problem so I deleted it because I don’t need conflicting stuff. I have added it back – and it still doesn’t fix my issue. Please help me because I have been trying to finish this website now for weeks and this is like the last problem.
February 8, 2017 at 12:50 am #1362399
LelyModeratorHello Michele,
See attached screenshot.
Look for this part:.x-colophon.top .x-container .x-column.x-1-2:first-of-type {width: 23%;} .x-colophon.top .x-container .x-column.x-1-2:last-of-type {width: 73%;} }That part sets the footer column width regardless of screensize. The extra closing curly brace at the end is considered CSS syntax error and will stop other CSS after that from working.
Then you have this code also at the end:@media (min-width: 979px) { .x-colophon.top .x-container .x-column.x-1-2:first-of-type {width: 100%;} .x-colophon.top .x-container .x-column.x-1-2:last-of-type {width: 100%;} }Because of the syntax error, it will not work. But if it works, this will not give you want you wanted because it sets desktop column view to 100% leaving mobile view to 23% and 73% width.
Remove both of that CSS and use this instead:
@media (min-width: 979px) { .x-colophon.top .x-container .x-column.x-1-2:first-of-type { width: 23%; } .x-colophon.top .x-container .x-column.x-1-2:last-of-type { width: 73%; } }By default column width on smaller devices is 100%. Then that custom CSS will adjust the column width on just desktop view.
Hope this helps.
-
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-1329528 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
