jamesbr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Sub-menu items not workingThe CSS for the submenu currently shows the following:
@media screen and (min-width: 768px) .main-navigation ul ul { top: 2.6em; }Top is used in reference to an element and its containing element. That is too much spacing between the menu item and the submenu list, thus the mouse can’t hover over the submenu. Try reducing the spacing to:
@media screen and (min-width: 768px) .main-navigation ul ul { top: 1.8em; }Forum: Themes and Templates
In reply to: [i-excel] Featured ImageWhat theme are you using? Could you also provide a link to your site?
Forum: Fixing WordPress
In reply to: Setting my WordPress site’s URLAre you still able to access the WordPress admin area? If so, try refreshing permalinks.
Forum: Fixing WordPress
In reply to: How to Center Page Title?If your theme has a custom CSS box within the options, then paste it there. If not, then at the very bottom of style.css and add a comment.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce layout uneven?While the width of all of those four photos is 450px, the heights range from 409 – 423px, thus the slight unevenness. Try either cropping them in Photoshop to be identical or defining a set height for all thumbnails.
Forum: Fixing WordPress
In reply to: "pages" are not updated with the main header titlesCould you provide the URL of your site? You may have custom names for the pages in the menu that are different from the actual page titles.
Forum: Fixing WordPress
In reply to: How to Center Page Title?Add this custom CSS:
.entry-title { text-align:center; }Forum: Fixing WordPress
In reply to: PagesAre all pages published?
In the Appearance->Menu section of WordPress, did you click and add the pages to the menu, or use custom links?
Forum: Fixing WordPress
In reply to: PagesCould you provide a link to your site?
Forum: Fixing WordPress
In reply to: Can't Get Menu Hover to WorkWhen I hover over the top menu, the color changes to red? In what other way do you want to change the link text?
Did you mean hover over the submenu, such as under About Us?
Forum: Plugins
In reply to: WooCommerce – How to add product&category image borderTry this custom CSS:
ul.products li.product img { border: 5px solid #ccc; }You can change the border style to whatever you like.
Forum: Plugins
In reply to: [Contact Form 7] How to change title in email inbox?By title, you mean subject?
When editing your contact form in WordPress, look for the section titled “Mail” on the Contact Form 7 screen. The left column should have a box for Subject and the right column has message body, where you can also enter the subject.
Forum: Fixing WordPress
In reply to: How to change the colour of the shopping cart iconYou could add the following custom CSS to hide the Search Product Box:
#search-top { display: none; }That is probably the quickest way.
Forum: Fixing WordPress
In reply to: How to change the colour of the shopping cart iconIt appears your cart button is using an image for the background and not defining the background-color alone in CSS.
You may want to change the color of that image to red via Photoshop or some other graphic software. Then upload the changed PNG and edit the background CSS to target the new file.
Looks like the current CSS has a 24px margin at the top of each page content area. Try adding custom CSS to reduce the margin that currently exists.
.site-content { margin: 0px auto; }