Robin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Theme Reinstallation QueriesHi
Firstly could be possible the custom changes your dev might have broken some functionality in the theme.
I hope your developer followed child theme concept to update/modify your theme, as than you could revert your parent theme to a default theme and see if it fixes your problem, or you can ask your dev to first backup all his changes and than revert the theme.The other thing you could do before all this is see, if may be any plugin you installed could have caused this issue, this way you still have your theme.
Go by uninstalling the plugins and then see if problem goes away, if it does start activating them one by one and see which plugin when activated caused the problem.Cheers
RobinForum: Themes and Templates
In reply to: Delete of the author's bioHi
You could simply make it display none
#wpautbox-below {
display: none;
}
add this to custom css if your theme supports it, or if you have access to ftp you could modify the stylesheet.Best practice will be to make a child theme and than modify the css, so in future you update your theme it wont remove your code.
Cheers
RobinForum: Themes and Templates
In reply to: CSS shows well in Firefox and Edge, but not in ChromeThis is how i see at 90% link
What laptop/computer screen size are you on?
RobinForum: Themes and Templates
In reply to: CSS shows well in Firefox and Edge, but not in ChromeThat is more to do with how your media query is managed
Forum: Themes and Templates
In reply to: Second menu underneath the primaryglad it worked out 🙂
cheersForum: Themes and Templates
In reply to: CSS shows well in Firefox and Edge, but not in ChromeHi
Can you printscreen where exactly you dont have left margin
As in my chrome i can see site properly aligned and margined.Forum: Themes and Templates
In reply to: Second menu underneath the primaryPlease add clear: both
to the place where i made a marker in screenshot
linkForum: Themes and Templates
In reply to: [Ignite] Get rid of the square "boxes" in menusgreat, glad it worked out 🙂
Forum: Themes and Templates
In reply to: Second menu underneath the primary#main-nav { clear: both; }
Forum: Themes and Templates
In reply to: [Ignite] Get rid of the square "boxes" in menusHi
The white color on hover is due to this.menu-primary a:hover, .menu-primary ul ul a:hover { color: white;}
so if you add it to ur custom css and change the color u want it will workForum: Themes and Templates
In reply to: Second menu underneath the primaryHi
Answered the solution in your other post.
CheersForum: Themes and Templates
In reply to: Secondary Menue should be horizontalyHi
add clear: both to your #main-navForum: Themes and Templates
In reply to: Second menu underneath the primaryHi
Do you have any link we can see?Most likely why your second menu is going on left is that either you should give full width (100%) to your primary menu or secondary menu so it doesnt float .
Forum: Themes and Templates
In reply to: How to Change the "header"..Hi Adam
Your theme is called Make, and your dev has made a child theme on top of it.
Looking at the code, most likely there is option in the theme to upload your logo from inside your WP admin dashboard.
Couple of places u look in
as Bojan suggested
Appearance > Customize
Or the theme could be using a theme options
And if you cant find any of the options in your dashboard to change the logo, you will need to add a css class in ur child theme stylesheet
wp-content/themes/autonomousenergies/style.css
.custom-logo {
background-image: url();
}
and in url u will need to add path to ur logo (u will need to upload a logo manually via ftp on ur server).
Hope that helps.
Cheers
RobinForum: Hacks
In reply to: JS script loads through wp_enqueue but does not work.glad it worked out
Cheers