askdesign
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Delete Leave a Comment, change font for category, add slashThe period was missing at the beginning of the class “entry-date”.
.entry-date:after?{
content: " / ";
padding: 0?10px;
}Forum: Fixing WordPress
In reply to: Delete Leave a Comment, change font for category, add slashI’m not seeing the padding in your code. Be sure you add that. Works for me.
We are not able to upload images to this forum. Use another browser to view the site when not logged in, and you’ll be able to see it. It might be for users to get the style guide? I’m not sure, I can’t see the entire thing.
Forum: Fixing WordPress
In reply to: Delete Leave a Comment, change font for category, add slashRegarding the space before and after the “/”, it’s trickier than I thought!
Try this (worked for me):.
entry-date:after {
content: " / ";
padding: 0 10px;
}Maybe you should start a new topic for your other questions, since they take us beyond the scope of the original topic questions.
- This reply was modified 1 year, 6 months ago by askdesign. Reason: rephrase
Forum: Fixing WordPress
In reply to: Delete Leave a Comment, change font for category, add slashThere’s a pop-up banner that requires the visitor to provide their name and email to gain access to the site.
Forum: Fixing WordPress
In reply to: Delete Leave a Comment, change font for category, add slashFor the spaces around the slash, you simply add a space:
.entry-date:after?{
content: " / ";
}You’ve added an access barrier to the site. I am unable to help you further.
Forum: Fixing WordPress
In reply to: Delete Leave a Comment, change font for category, add slashFor the slash, I tried this and it works:
.entry-date:after {
content: "/";
}To enlarge the category name, while keeping the rest of the meta-data as is, modify the style.css like so:
.p-meta {
font-family: "Bayshore",serif;
font-size: 2rem;
}.entry-date {
font-family: "Bodoni",serif;
font-size: 1rem;
}I recommend using Google Chrome tools or Firefox Developer tools so that you’ll be able to identify the selectors yourself and make the necessary modifications!
- This reply was modified 1 year, 6 months ago by askdesign. Reason: typo
Forum: Everything else WordPress
In reply to: Merge categoriesHere’s another article that offers multiple solutions:
https://ltheme.com/merge-and-bulk-edit-categories-and-tags-in-wordpress/Forum: Fixing WordPress
In reply to: Membership plugin with specific requirementsA good starting point would be to read Chris Lema’s reviews on membership plugins:
https://chrislema.com/comparing-wordpress-membership-plugins/Forum: Fixing WordPress
In reply to: Delete Leave a Comment, change font for category, add slash“Leave a Comment” – to remove, add this code to style.css:
.p-meta > span > a.meta-comments?{
display: none;
}Slashes between category and date – Not sure, but you could try adding this code to style.css:
.p-meta > span .entry-date:after?{
}
display: inline-block;Different fonts for date and category?–
step 1 – Change the font for the class p-meta.p-meta?{
font-family: "Baytown",serif;
}step 2 – Change the font for the class entry-date
.entry-date {
font-family: "Bodoni",serif;
}NEW ISSUE: Got this error code is the stylecss?nonce_failure
This sometimes happens when you leave the site editor tab open for too long. It should resolve by refreshing the the editor page. More details are here:
https://quaries.com/nonce_failure-error/Forum: Fixing WordPress
In reply to: Delete Leave a Comment, change font for category, add slash“Leave a Comment” – Have you tried disabling comments on the site?
Go to Settings > Discussion > Uncheck “allow people to post comments…” ~ I am not disabling comments. It is in what I believe is called the entry header underneath the title only that I want to delete where it says Leave a Comment.? I think disabling comments site wide will cause the text “Leave a Comment” to not display.
Slashes between category and date – How did you get rid of the slashes?
~ I added .p-meta>span:after {display: none;} in .stylecss? You need to enable the slash display again.
If disabling comments solves the above issue, then you will only have 1 slash where you want it (between the category and date).Different fonts for date and category – The category name doesn’t have its own class, so try this:
step 1 – Change the font for the class p-meta.p-meta {
margin: 8px 0 0;
line-height: 1.5;
font-family: "new font name",serif;
}step 2 – Change the font for the class entry-date
.entry-date {
font-family: "Baytown",serif;
}Where do I enter this or change this?
? In the style.css file
I don’t get your step 2. I want the font to stay Bodoni as it is for the date. It is only the category name and slash before it (which no longer shows) to be in Baytown font in lower case. Did you mean to write that? Was it just a suggestion? Sorry this is not my expertise.
? Sorry, I thought you wanted to change the font for the category. So, you only need to change the font for the class “entry-date”, like this:
.entry-date {
font-family: "Bodoni",serif;
}Forum: Fixing WordPress
In reply to: Link Text Color in Navigation BlockHi Richard,
Are you working locally or is it possible for you to share a URL link for us to examine?I’ve had some frustrating moments where things look accurate when I’m logged into the site, then look different once I log out. When you say you’ve cleared the cache, is there another level to clearing at your web host’s server?
- This reply was modified 1 year, 6 months ago by askdesign.
Forum: Fixing WordPress
In reply to: Delete Leave a Comment, change font for category, add slashHi there,
“Leave a Comment” – Have you tried disabling comments on the site?
Go to Settings > Discussion > Uncheck “allow people to post comments…”Slashes between category and date – How did you get rid of the slashes?
Different fonts for date and category – The category name doesn’t have its own class, so try this:
step 1 – Change the font for the class p-meta.p-meta?{
margin: 8px?0 0;
line-height: 1.5;
font-family: "new font name",serif;
}step 2 – Change the font for the class entry-date
.entry-date {
font-family: "Baytown",serif;
}- This reply was modified 1 year, 6 months ago by askdesign.
Forum: Fixing WordPress
In reply to: Updating Site FaviconHi, It looks like the updated favicon is displaying across all parts of the site (https://wamss.org.au/). So, wherever you put it seems to be working. Generally, you place it in the themes folder. Sometimes it’s in an images folder inside the themes folder:
wp-content > themes > your theme > images
Find the default favicon and replace it with yours.
When users click on the PDF, they are taken to the Adobe Acrobat site with its own favicon.
- This reply was modified 1 year, 10 months ago by askdesign. Reason: add new information
Forum: Developing with WordPress
In reply to: H tags in menu and footerHi, I don’t see any H tags in the menu or footer titles? Did you change them?
Forum: Fixing WordPress
In reply to: not able to edit anything on wordpressHi, Not sure what you mean by “Changing the config.php to default”. Did you clone the wp-config-sample.php and then insert the values for database name, username, and password?
This is the section of the config file that needs editing:
// ** Database settings - You can get this info from your web host ** // /** The name of the database for WordPress */ define( 'DB_NAME', 'database_name_here' ); /** Database username */ define( 'DB_USER', 'username_here' ); /** Database password */ define( 'DB_PASSWORD', 'password_here' ); /** Database hostname */ define( 'DB_HOST', 'localhost' ); /** Database charset to use in creating database tables. */ define( 'DB_CHARSET', 'utf8' ); /** The database collate type. Don't change this if in doubt. */ define( 'DB_COLLATE', '' );