Forum Replies Created
-
AuthorPosts
-
cdispoto
ParticipantThanks so much! I have found this block code and removed it and it works now
cdispoto
ParticipantI got the following response from the plugin vendor. Any idea how I can use this info to resolve the issue?
your theme is loading its own custom copy of jQuery http://prntscr.com/b5wpee , but this is not recommended, as it will often break other plugins. Instead, just use the following to prevent multiple instances of jQuery on a WordPress website:
wp_enqueue_script('jquery');
It looks like the jQuery is being loaded somewhere in your theme's "header.php" file, "footer.php" file, or "functions.php" file, whomever created your theme has hard-coded a version of jQuery into it, which isn't really the best thing to do, as it often breaks functionality with other plugins. So the best thing to do would be to contact the author of your theme, and they can help you to remove this behavior. Let us know how it goes.
cdispoto
ParticipantVictor,
Can I ask how you implemented the "buttons" in the top section? For my site, I want to have a large photo with three overlaid clickable link boxes that lead to my Bio | Resume | Contact sections.
An example I found online similar to what I want is at http://www.devonstank.com/
Any advice would help! Your site looks great!
cdispoto
ParticipantI am now using Firebug, I just wasn't sure of the command to use in the CSS. Thanks for your help
cdispoto
ParticipantThanks! Any idea how to title-case the headers for the custom menu? ie I want "ESECAUCUS LINKS" to be "eSecaucus Links". Hate the ALL CAPS look.
cdispoto
ParticipantOh, I see! Sorry, I didn't realize. Thanks so much, it worked!
cdispoto
ParticipantI've got the following code in my CSS file but am not sure exactly what and where to add padding to fix the padding:
/* Widget Area
--------------------------------------------- */.site-header .widget-area {
float: right;
text-align: right;
width: 500px;
padding: 50px 0;
}.header-image .site-header .title-area,
.header-image .site-header .widget-area {
padding: 40px 0;
}.site-header .widget-area p {
margin-bottom: 0;
}cdispoto
ParticipantI actually found a way to fix it, so it seems fine now. Would you have any insight on how I can move the ad in the top right widget lower? It looks odd at the top and I would like it more in line with the logo.
cdispoto
ParticipantThanks. I have been able to increase the size of the space for the header image but it still doesn't appear to let me increase the size of the image. No matter what size image I put in there, it makes it 400 wide. How do I alter that?
cdispoto
ParticipantI'm still not sure how to accomplish this. I basically want three columns in the footer, each with a different set of links.
-
AuthorPosts