Css to hide the Highlighted text in the image
-
Hi how do i remove this by css ? https://onedrive.live.com/redir?resid=E95FB78AD0BAAEEB!9626&authkey=!AAevhrHEAd_1afM&ithint=file%2cpng thanks in advance
The blog I need help with is: (visible only to logged in users)
-
Hi there, this thread is marked as resolved, but I don’t see that the home page title is hidden from your site. We can use CSS to hide it. Go to Appearance > Customize > CSS, delete all the informational text in that window, and paste in the following custom CSS.
.home .post-header { display: none; }This hides the title on only the home page. If you wish to hide the title on other pages, please let me know.
-
-
Hi one of my friends gave my this css code to use and it removes all the titles on the page “h2.entry-title {display: none;}” is there any css code to move the content up to where the page title was at?
-
There is a top margin set on the site-content div. The following will remove that.
.page .site-content { margin-top: 0; } -
-
one last request: is there any css to provide a back to the “Top of the page” button or is that HTML only ? also is there any css that will let me edit the Footer or is that not allowed on wordpress.com?
-
For the Footer one i am going to leave thease “Blog at WordPress.com. | The Gateway Theme.” but add Copywriter Connor Moizer
-
You are not able to remove the existing WordPress.com and theme credit, but you can use CSS to *add* your own copyright info to the footer if you like. Here is some CSS you can try for that:
site-info:before { content: "©2015 My Business Name"; color: #E8554E; display: inline; float: right; }You can try adding that block of code into the CSS tab of your site customizer here: https://wordpress.com/customize
Just replace the sample text with the text you want to add to the footer.
Hope that helps. :)
-
Thanks that worked and very last request is there a code to center the two images on the home page (ones above the video) :)
-
one last request: is there any css to provide a back to the “Top of the page” button or is that HTML only ?
Because it’s not possible to add code directly to the themes source files, there is not a good way to implement that on a theme level.
However, it is possible to add it to a standard page or post within the text area of the editor: https://en.support.wordpress.com/splitting-content/page-jumps/
It would not work for your entire site, but is good for when you have a lot of text in your blog posts or pages.
Hope that helps. Please let me know if you have any further questions.
-
site-info:before {
content: “©2015 My Business Name”;
color: #E8554E;
display: inline;
float: right;
}
is not working now :( -
site-info:before {
content: “©2015 My Business Name”;
color: #E8554E;
display: inline;
float: right;
}the code isn’t working what could be wrong it worked when it was posted but not now
-
Ha, sorry about that. Looks like I left out one very small, but important bit of punctuation.
Here is the correct code you need:
.site-info:before { content: "©2015 My Business Name"; color: #E8554E; display: inline; float: right; }Cheers!
-
Thank you so much its like looking better than it did a week ago one more thing how do I get this to work https://gatewaydemo.wordpress.com/add-a-call-to-action-button/ I have tried to add it to the site header on the home page but not working?
-
how do i do a redirect with out having a button in the menu ?? some one told me but thats if you have a plug in and i was wondering if you could do it without the pluging ??
- The topic ‘Css to hide the Highlighted text in the image’ is closed to new replies.