¿Cómo puedo cambiar el color del link : "Dejar un comentario"

  • Unknown's avatar

    Deseo cambiar el color de los links referidos solo a “Dejar un comentario” y “Editar” de cada post pues no son visibles: son entre grises y blancos.
    I want to change the coor of the link “Comments” of each post because they are grey and arent visible. I dont know how to use the css . I am using an upgrade thast allows to use the css customization I want them in blue #0B0B61. And I want also want to change the color of the headers or titles of the pages because they are also grey to a red color #B40404. wHO CAN HELP ME, PLEASE? Quién puede ayudarme. no conozco el leguaje informático mucho.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    I want to change the color of the link “Comments” of each post because they are grey and arent visible. I want them in blue #0B0B61.

    I can give you some CSS to help you get started.

    This will change all of the links below the post title to blue but keep the category links that appear at the top right of featured images on the home page gray:

    .entry-meta,
    .entry-meta a,
    .entry-meta .entry-format,
    .single .entry-meta a,
    body.page .type-page .entry-meta a  {
    	color: #0B0B61;
    }
    .cat-links a {
    	color: #bbb;
    }

    You may also want to set the link color for the current menu item to a dark color:

    .main-navigation li.current_page_item a,
    .main-navigation li.current-menu-item a {
    	color: #0B0B61;
    }
  • Unknown's avatar

    And I want also want to change the color of the headers or titles of the pages because they are also grey to a red color #B40404.

    Here is an example that will change the color of titles on pages as well as the not found page:

    body.page .type-page .entry-title,
    .not-found .entry-title,
    .page-title {
    	color: #B40404;
    }

    I found this by using a web inspector—which most modern browsers have built in. To use it, right-click on an element such as the page title and select the “Inspect Element” option. It should pull up the HTML as well as the CSS that applies to it on the right. You should be able to see what selector list the theme is using and copy that to set a new color.

    Also, here is a link to some CSS basics in case you’re interested:
    http://www.htmldog.com/guides/cssbeginner/

  • Unknown's avatar

    I also noticed the widget titles were gray too. Here’s how to change them to black in the Oxygen theme:

    .widgettitle {
    	color: #000;
    }
  • Unknown's avatar

    Footer text and links too:

    #colophon {
    	color: #9c6409;
    }
    #colophon a {
    	color: #bd790a;
    }
  • Unknown's avatar

    Let me thank you for the great support you provided. Sincerely. I implemented three of your recommendations. I have another question for you, and I dont mean to bother you at all. It´s about the thumb nails of the videos. I tried to publish them several times but what it is shown is a post in white color. In other words, no image of the video is shown. Let me say it again. The video is posted and I can play it witthout any problems at all. The problem is the presentation of the post. Just a white image is seen. Can we do something to make visible a picture of the video we post? Thanks, again dear friend. I do appreciate you support.

  • Unknown's avatar

    It’s possible the video thumbnails take a bit of time to update because of a strong cache for them. I see the same thing happen with favicon images.

    If you wait at least an hour and then check again, do the thumbnails look correct after that?

    If you’re still having trouble, could you please point out a very specific example (i.e. a link to a post where the video thumbnail hasn’t updated yet) and describe exactly what the updated thumbnail is supposed to look?

  • Unknown's avatar

    I´ll see and check what you´ve explained to me. I´ll wait longer. Maybe that´s the critical point.
    Dear member of the staff, Can I ask a final question o Should I send it to another forum? It´s in regard to rename one widget: If you check, -now, it´s visible thanks to your incredible help – the name of “blogroll” that appears on the left column (secondary column). I want to change its name to: “webs recomendadas” How can i do it?
    And last of all: Is it possible to change the long name of : “Archivo de la Categoria: Formación” (just as an example) and simply say: “Archivo: Formación” or “Formación”.
    This is my last questions by now. I´m eager to do these changes if they were possible.
    All my gratitude for your patience and help.
    Sincerely, Juan José

  • Unknown's avatar

    This is the link where you can observe what I ask about.

    http://agendacix.com/category/formacion/

  • Unknown's avatar

    it´s visible thanks to your incredible help – the name of “blogroll” that appears on the left column (secondary column). I want to change its name to: “webs recomendadas” How can i do it?

    Go to Appearance → Links, click on any link and add a category named “webs recomendadas,” uncheck the “Blogroll” category and save changes. Then edit each link and update each one to use the new category you created.

  • Unknown's avatar

    Is it possible to change the long name of : “Archivo de la Categoria: Formación” (just as an example) and simply say: “Archivo: Formación” or “Formación”.

    It’s actually quite tricky, but something like this might work:

    .archive .page-header {
    	overflow: hidden;
    }
    
    .archive .page-title {
    	visibility: hidden;
    	float: left;
    	margin-top: -1.3em;
    }
    
    .archive .page-title span {
    	visibility: visible;
    	float: left;
    }
    
    .archive .page-title span:before {
    	content: "Archivo: ";
    }
  • Unknown's avatar

    Once again, let me express my sincere thanks for your help. Your support was really helpful. Your explanations were clear and worked out what I wanted to solve. I followed your recomendations and i feel satisfied. I will also try to learn a litlle bit more of CSS language.
    Millions of thanks.

  • The topic ‘¿Cómo puedo cambiar el color del link : "Dejar un comentario"’ is closed to new replies.