acosmin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [JustWrite] FooterThe only way to do that is to open
footer.phpand replace all the php lines with html, except the line containingwp_footer().Forum: Themes and Templates
In reply to: [JustWrite] Add Logo Full SizeYou can’t do nothing, just to hard code it and that takes a lot of time. You can try jobs.wordpress.net
Forum: Reviews
In reply to: [JustWrite] The theme was good, support was bad.It’s great to see you are still using the theme. It’s a little hypocritical.
https://wordpress.org/support/topic/change-pagination-hover-css?replies=5
Forum: Themes and Templates
In reply to: [JustWrite] How to reduce font sizeOpen
style.css, find:.post-template-1 p, .single-template-1 .single-content { font-size: 20px; }Change 20 to the size you want
Forum: Themes and Templates
In reply to: [JustWrite] Change pagination hover cssIt’s great to see you are still using the theme. It’s a little hypocritical.
Forum: Reviews
In reply to: [JustWrite] The theme was good, support was bad.GL with that! Getting support on Saturday nights is going to be easy even for premium themes. If you waited a few more hours maybe I would’ve helped…
Forum: Themes and Templates
In reply to: [JustWrite] Change pagination hover cssAre you serious man? I offer free support for bugs, not for customizations. You can find help for customizations on http://jobs.wordpress.net/
I even helped you with your modification requests for free because I wanted to be a nice guy.
Anyway thanks for the one star rating, you pulled a nice one. Give five stars first, ask for numerous support requests and if you don’t receive it in 5 min you switch to a 1 star rating.
GL. It’s Saturday!
Forum: Themes and Templates
In reply to: [JustWrite] w3 total cache and menu problemHi! I think there is a problem with one of the jQuery plugins: idTabs. If you want you can test and tell me if it all things work after.
Open
functions.phpand remove this line:
wp_enqueue_script( 'ac_js_idtabs', get_template_directory_uri() . '/assets/js/idtabs.js', array('jquery'), '3.0', true );Also open
../assets/js/myscripts.jsand remove:// Tabs Widget $('#ac-tabs-widget').idTabs(function(id){ $(id).fadeIn(400); }); // -------------You will not be able to use the Tabs widget in the sidebar if you do these steps.
I will try and fix it in a future update.
Forum: Themes and Templates
In reply to: [JustWrite] Logo ImageThere isn’t a way around this. If you remove the title chrome doesn’t display a title line your tab because there isn’t one.
If you upload a logo the site title disappears. You also have an option in Customizer to disable/enable the description.
Forum: Themes and Templates
In reply to: [JustWrite] Remove right sidebarHi! I am not responsible for any modifications you do to your website…
You can open index.php and remove get_sidebar()
Forum: Reviews
In reply to: [JustWrite] The theme was good, support was bad.Thank you!
Forum: Reviews
In reply to: [JustWrite] Great themeThank you!
Forum: Themes and Templates
In reply to: [JustWrite] Help changing css colorOpen
style.cssand find:.post-template-1 .details .post-small-button { width: 48px; text-align: center; border-width: 1px; border-style: solid; font-size: 11px; -webkit-box-shadow: 0 2px 0 rgba(225,225,225,0.5); -moz-box-shadow: 0 2px 0 rgba(225,225,225,0.5); box-shadow: 0 2px 0 rgba(225,225,225,0.5);change with:
.post-template-1 .details .post-small-button { width: 48px; text-align: center; border-width: 1px; border-style: solid; font-size: 11px; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important;Forum: Themes and Templates
In reply to: [JustWrite] Remove calendar from dropdown menuOpen ‘sidebar-browse.php’ and replace:
<div class="side-box larger"> <h3 class="sidebar-heading"><?php _e( 'Calendar', 'acosmin' ); ?></h3> <div class="sb-content clearfix"> <?php get_calendar(true); ?> </div><!-- END .sb-content --> </div><!-- END .sidebox -->with:
<div class="side-box larger"> <h3 class="sidebar-heading"><?php _e( 'A Title Goes Here', 'acosmin' ); ?></h3> <div class="sb-content clearfix"> YOUR VIDEO IMAGE CODE GOES HERE </div><!-- END .sb-content --> </div><!-- END .sidebox -->Sorry buy I won’t help you more with this request because it’s a modification query…
You can use jobs.wordpress.net
Forum: Themes and Templates
In reply to: [JustWrite] Mini sidebar helpOpen
sidebar-browse.phpand change:if(is_home()) { $page_state = 'current_page_item'; } else { $page_state = ''; } wp_nav_menu( array( 'container' => '', 'theme_location' => 'mini-first', 'items_wrap' => '<ul class="normal-list"><li class="'. $page_state .'"><a href="'. esc_url( home_url() ) .'" title="'. __('Go Home', 'acosmin') .'">'. __('Main Page', 'acosmin') .'</a></li>%3$s</ul>' ) );with:
wp_nav_menu( array( 'container' => '', 'theme_location' => 'mini-first', 'items_wrap' => '<ul class="normal-list">%3$s</ul>' ) );Always use a child theme for modifications.