Couple of formatting questions
- The topic ‘Couple of formatting questions’ is closed to new replies.
Need help? Check out our Support site, then
hi again,
1. How do I eliminate ALL hyphefnation line breaks on the entire site?
2. How do I remove author, date and project types, etc. from displaying everywhere?
Including the portfolio grid layout, portfolio pages, posts, blog main page and the junk at the bottom of blog pages (this entry was posted in…..)
3. Since the wordpress search is not effective on my site (It can’t find the main purpose of the website “the greene’s release technique” which is mentioned in countless articles, and even has it’s own page),
how can i link the search icon to a specific page – like the sitemap? So people can find what they are searching for…
thanks for your help
The blog I need help with is: (visible only to logged in users)
Hello,
1. How do I eliminate ALL hyphefnation line breaks on the entire site?
Please use the following CSS Code Snippet,
.widget,
.entry-content,
.entry-summary,
.page-content,
.portfolio-wrapper .portfolio-entry-summary {
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
2. How do I remove author, date and project types, etc. from displaying everywhere?
Will it be for blog as well ?
how can i link the search icon to a specific page – like the sitemap? So people can find what they are searching for…
It will not be possible to change the link of search icon.
Thanks
thank you very much for your help. the hyphen removal worked perfectly!