bigdrop.gr
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Ascent] change colour on hover linkYou are welcomed!
Please mark this topic as resolved!
Forum: Themes and Templates
In reply to: [Ascent] change colour on hover linkHi,
yourdomain/wp-content/themes/ascent/includes/css/main.css
on line 539change this:
nav.main-menu ul .current_page_item > a { background: #1ABC9C none repeat scroll 0% 0%; color: #FFF; }
to this:
nav.main-menu ul > li:hover > a, nav.main-menu ul > .current-menu-item > a { background-color: #d32399; color: #FFF; }
and on line 543 change this:
nav.main-menu ul > li:hover > a, nav.main-menu ul > .current-menu-item > a { background-color: #1ABC9C; color: #FFF; }
to this:
nav.main-menu ul .current_page_item > a { background: #d32399; color: #FFF; }
if you choose to edit your theme files, all your changes will be lost if the theme will be updated. You can use a child theme or if you use the wordpress jetpack plugin, it gives you the option to add custom css.
If you will follow the plugin solution, then use this code:
nav.main-menu ul > li:hover > a, nav.main-menu ul > .current-menu-item > a { background-color: #d32399 !important; }
nav.main-menu ul .current_page_item > a { background: #d32399 !important; }
.
It should work!
Have fun! Greetings from Sunny Greece!!Forum: Themes and Templates
In reply to: [SKT Black] Edit Code on PagesDetermine css files is easy by inspecting the page with your browser tools (as you described above).
But finding the right file, as you ask, you need to understand php. There is no magic way. Just open the index.php or page-home.php (or how else is your home page template is named) and see what parts are included.
ex if you modify single.php (template for showing a single post) you will see at the begging of the page (on top) <?php get_header(); ?> which means that at this point it will execute all the code from header.php…
you will also see something like <?php get_template_part( ‘templates/pagehead’ ); ?> which means that at this point it will execute the code from the file pagehead.php which is in folder “template”.I think that it is a waste of time if you are not familiar with php. Try to learn the basics of php and how wordpress works and then try to modify the pages.
Hope I helped you!
Forum: Themes and Templates
In reply to: [Ascent] change colour on hover linkHello Karen,
This code will change the color when you hover on menu from green to pink:
nav.main-menu ul > li:hover > a, nav.main-menu ul > .current-menu-item > a { background-color: #d32399 !important; }
And this code will change the current page color from green to pink:
nav.main-menu ul .current_page_item > a { background: #d32399 !important; }
Hope it helps!
Forum: Themes and Templates
In reply to: [Ascent] change colour on hover linkPost here the link to your website!
Forum: Themes and Templates
In reply to: [SKT Black] Edit Code on PagesHello,
If you want to edit the code you can use Filezilla to access through FTP your server and then find and edit the file you want.
All the themes files are in the /wp-content/themes/you-theme.
The predefined settings (most probably) are on the functions.php file.The home page file could be index.php or page-home.php
If you don’t know how to use filezilla then you can login in to your wordpress dashboard and go to Appearance > Editor and edit from there all the files you want!
Good Luck!
Forum: Themes and Templates
In reply to: [Flat Responsive] How to Change header image background colorCan you post a link to your website?
Forum: Themes and Templates
In reply to: Submenu is off page, hot to make it scrollable?Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Change the shortcodeThank you!
Using the Search and Replace plugin did exactly what I wanted to do!Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Change the shortcodeI did that by editing the mailchimp-for-wp/includes/class-form-manager.php
file. It seems to be working.Still if you have any better suggestion for achieving my goal, please let me know.
Forum: Fixing WordPress
In reply to: max_input_vars = 3000 causing a database errorThank you for your answer.
I have mailed them and waiting for their answer.
Just asked here, maybe anyone had the same problem and might helped me…Forum: Hacks
In reply to: Show related posts on single custom post page by custom taxonomyThe solution to that can be found here
Forum: Plugins
In reply to: [WP Booking Calendar] The page content lost after adding the plugin shortcodeHi,
thank you for the ultra fast respond!
I have checked the error.log from server and I get this error
PHP Fatal error: Call to undefined function imagecreatetruecolor() in /home/admin/web/rhc.bigdrop.gr/public_html/wp-content/plugins/booking/js/captcha/captcha.php on line 93, referer: https://rhc.bigdrop.gr/wp-admin/post.php?post=52&action=editSo if I dissable the captcha from the plugins settings then it is working properly. What is this error? Can you help me with this?
Thank you!
Best RegardsForum: Themes and Templates
In reply to: [ButterBelly] Default header description removeHi Calvin,
I know that I should have opened a new thread but I just wanted to reach you that’s why I’m posting here.In the theme option > homepage feature area > First Feature Heading
I add a new title (my website is in Greek language), and the title is not showing on my homepage.I’ve checked the wp-config.php file for character encodind and everything is fine, also on my sql database. I tried changing the font on the themes style.css file but it didn’t help either. Can you please help me with this? Do you know what can be causing this?