yogeshyadav20
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Having issues with my navigation bar on mobilethis file is missing
<link rel=’stylesheet’ id=’bootstrapicons-css’ href=’https://secureservercdn.net/198.71.190.156/ygm.ab7.myftpupload.com/wp-content/themes/themeassets/vendor/bootstrap-icons/bootstrap-icons.css?ver=1&time=1651378952′ type=’text/css’ media=’all’ />
Forum: Fixing WordPress
In reply to: Having issues with my navigation bar on mobileFix this error
bootstrap-icons.css:1 Failed to load resource: the server responded with a status of 404 ()
this will fix your problem
Forum: Fixing WordPress
In reply to: Question Mark on the navigation menuAppearance->Customize->Additional CSS
Forum: Fixing WordPress
In reply to: Question Mark on the navigation menuHi there, that is no question mark, that is a dropdown icon, not showing because your font library is missing.
You have two options to fix this
1. fix your font issue
2. paste my CSS code in your CSS
.navigation-classic .primary-navigation .menu-item-has-children:before { position: absolute; z-index: 1; top: 50%; right: 0; margin-top: -0.6emem; color: #bc1a1d; content: ""; display: inline-block; width: 1em; height: 1em; font-family: "Calibri"; font-size: 1em; line-height: 1; text-decoration: inherit; font-weight: 400; background-image: url(https://www.svgrepo.com/show/80156/down-arrow.svg); font-style: normal; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; background-size: auto; background-position: center; background-repeat: no-repeat; }
let me know if anything else
thanks
Forum: Fixing WordPress
In reply to: How do I change the name of my account?Forum: Fixing WordPress
In reply to: Header FooterHi there,
I can see your header & footer are showing see the attachment,
let me know if any thing else
if you are not seeing this, then clear your browser cache or try to see in private window
thanks
Forum: Fixing WordPress
In reply to: Restore accidentally deleted menuHi there, sorry to daily reply
Following this tread, will be helpful for you
Forum: Fixing WordPress
In reply to: Individual link color in posts/sites or blocksForum: Fixing WordPress
In reply to: How to edit a CSS element on a single page?Hi There,
add this css,
.home .site-main { margin-top: 100px; }
this will help you
Thanks, let me know if anything else can i do for you
- This reply was modified 2 years, 7 months ago by yogeshyadav20.
Forum: Fixing WordPress
In reply to: Restore accidentally deleted menuHi There,
If you did it through the WP backend, you need to restore the entries from wp_posts and wp_postmeta. Look for the nav_menu_item post type, grab any row that uses that. Then note the associated IDs and grab the rows from wp_postmeta that use those IDs as Post ID. That should restore your menu.
try to follow the above steps, hope this will be help
Forum: Fixing WordPress
In reply to: How to change font size of page header in Sinatra theme?Hey There,
try like this
.entry-title { font-size:20px !important; }
this will work
Thanks
To add or override CSS: use the “Additional CSS” option in the customizer. https://codex.www.ads-software.com/CSS#Custom_CSS_in_WordPress
Forum: Fixing WordPress
In reply to: WordPress themes and elements disappearing.Hi there,
Before making any changes, you should create a child theme, you can do this by using the plugin
Then go to your appearance and then activate your current theme’s child theme.
this will avoid your losses while updates
let me know if anything else, i can do for you
Thanks
Forum: Fixing WordPress
In reply to: How do I increase the gap at the top of every blog post?Hi there
add this CSS in your style.css file
.heateor_sss_sharing_ul { padding-bottom: 25px; }
Forum: Fixing WordPress
In reply to: Sticky Header on Desktop OnlyOkay @cvanliew19
try something like bellow
#header { position: fixed; background: #000; color: #fff; padding: 20px; margin: 0; transition: left 0.5s; } @media all and (max-width: 780px){ #header { position:inherit; } }
#header will be your header id or class
and let me know if anything else