Rosewood | Organic Farming WordPress Theme : my questions :)

Hello everybody,

I’m new on this forum because I bought a very nice template “Rosewood”.

I am working on it but I have three very small questions :slight_smile:
I hope you could help me :wink:

  1. yellow waves called in line 392 from the fontello.css: we can find these waves everywhere on the pages of the site after the group title+subtitle (I would like to remove it or replace it)

  2. about the style of every pages: I would like to update the color of the link for example (everything has been specified but it doesn’t work…)

  3. the header of each pages shows a background that I can’t change: ex on this page http://preview.themeforest.net/item/resewood-organic-farming-wp-theme/full_screen_preview/20987699

Thx a lot for your answers guys!

Best regards :slight_smile:
Stéphanie

Hi

  1. you can use this css:
.sc_item_title::before {
   content: ''' !important;
}
  1. I think you can chnage the color from your theme options color settings
  2. I think you can do it going through the page edit and you will get header image settings option there.

If you have still problem with the theme then the best way to get the support is Contact your purchased Theme Author. Contact Author and let them know.

Thanks

Thx a lot for your answers: fonts are not really easy to be updated but I can see some solutions :wink:

About my third point, does it exist a way to bypass this picture with a custum css or something else? I don’t find it… I wanted to replace it on the FTP, exactly at same place, but I don’t think it is the best way to do no?

Thx again !
Stéphanie

in this case you have overwrite the css for each page and you have to use !important in css rule but I strongly recommend please change header images using wp-admin dashboard. Thanks

I am ok with you and I would like to use wp-admin dashboard… and you know… it is not my first WP template… but this time, I didn’t find it. To avoid to break anything, I have remove the photo on the ftp :slight_smile:

Thx again.
Best regards,

1 Like

Hello,

I have an other question : I delete the possibility to leave a comment on my posts. But when I see every posts on the main page, I can read “0 comment”. Could I remove this information please?
With a line in CSS?
Thx,
Stephanie

Hi

Go to wp-admin dashboard then Settings => Discussion and unchecked:
Allow people to post comments on new articles
(These settings may be overridden for individual articles.)

If the above solution not work for you then you can use the following css:

.post_meta_item.post_counters_item.post_counters_comments {
   display: none !important;
}

Thanks

Thx !!