Forum Replies Created
-
AuthorPosts
-
andytc
ParticipantCool , It's a tricky one because the padding will also affect the widget title that has negative margin-top to pull it down over the actual widget content. If the video needs to be full width and fill the space top to bottom , the widget title won't look very good hanging over the video. You can try the CSS below , but this will change the widget title layout on that widget only (video) to be above the widget itself. Play with it.
We are going to overrule the width of the iFrame to be 100% , if you can you could adjust that inline , but for now , just overrule it as below..sidebar .widget_media_video { padding: 0; } .sidebar .wp-video { margin-bottom: 0; } .sidebar .widget_media_video .widget-title { margin-top: -83px; } .sidebar .wp-video-shortcode,.sidebar .wp-video-shortcode iframe { width: 100% !important; } .sidebar .mejs-container { padding-top: 56.25%; }
Best I can do ... Hope that helps
andytc
ParticipantThat information is in the setup docs at my-studiopress
andytc
ParticipantLink to site ?
andytc
ParticipantThat’s nothing to do with Genesis, you’ve answered your own query.
andytc
ParticipantOk , I'm not seeing a black border on the dropdown either , so maybe a cache issue , it all looks good. Nice site BTW , I like the video header , very nicely done.
andytc
ParticipantWhen I view your site I see an orange background on the sub-menu items ?.
Could it be your browser cache ?
This entry -
background-color: #ff8e01;
andytc
ParticipantThat’s odd , I tried it on a local install and it worked fine. Can we be sure the date is being generated by Genesis and not a plugin or some custom code?. Sorry I can’t help much , really don’t have enough to go on , a link to a site might help , but not guaranteed.
January 9, 2021 at 5:16 am in reply to: How do I register genesis custom blocks programmatically in wordpress? #502592andytc
ParticipantHave you added the blocks/blocks-test.php file and path to functions.php ?
Similar to below
require_once get_stylesheet_directory() . '/blocks/block-test.php';
andytc
ParticipantYou seem to have that all sorted.
andytc
ParticipantChoose only one of these and add it to the custom CSS in the customiser -
Using 'transparent' as below might be what you want , but that might cause some visibility issues with your menu - up to you
.page-header:before { background-color: transparent; }
or , adjust the value of the rgb - in the css below it's percentage has been lowered , but you can play with that number to get the look you want.
.page-header:before { background-color: rgb(20 30 40 / 12%); }
andytc
ParticipantLink to your site to see the problem ?
That code will produce a blank page , you haven’t called the Genesis function at the end , so link to site
andytc
ParticipantLots of info out there for this -
https://codedcreative.co/easily-install-google-analytics-using-genesis-framework/
andytc
ParticipantIt should be -
Customise > Theme Settings > Singular Content
Entry Meta (above content) > Delete what's in there and publish
andytc
ParticipantA little reading tells me you might have to place the firewall option into ‘learning mode’ , if you google that exact error wording you’ll find some info. I don’t use that plugin, it’s just what I’ve found from a quick poke around.
andytc
ParticipantDo you have the Wordfence plugin installed?
andytc
ParticipantYou can achieve any look and layout with any Genesis theme.
Get a head start by choosing a theme that has the header you want , No2 and No3 can be achieved with any theme , example for No2 , use the featured page widget
andytc
ParticipantI’m not seeing the 404 , have you fixed it ?
January 2, 2021 at 4:35 pm in reply to: No Sidebar Theme – Remove Full Page First Featured Image #502463andytc
ParticipantDoesn't the last post also have 100% width or 98% to be precise ?
Do you have a link to your site ?
andytc
ParticipantTry adding this to your Custom CSS -
@media only screen and (max-width: 640px) { .post-image.entry-image {width:100%;} } }
andytc
ParticipantIt’s a weird one for sure
cricketyorkshire , try disabling plugins and check when that space disappears, the CSS you were given is not the solution.
-
AuthorPosts