mdivk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Crazy theme driving me nutI have identified their plugin is somehow conflicting to the theme because I used a test page, with the plugin (Flickr Album Gallery), the header is squeezed in my Chrome (and some other people also notice that despite it works on your side.
thanks for your suggestion but this particular developer is in India and does not respond to my couple emails in the past so I gave up reaching out to them.
With that being said, choosing a different plugin is the best option for me.
Forum: Fixing WordPress
In reply to: Crazy theme driving me nut@anevins: my apology for using the word “crazy” on your comment.
Forum: Fixing WordPress
In reply to: Crazy theme driving me nutThank you for your finding. I do see it in Chrome but yes Firefox is fine.
This is making things even muddy now.
Is there any magic trick or plugin to make it work for all browsers?
Forum: Fixing WordPress
In reply to: Crazy theme driving me nutImpossible to go that way. That’s even crazy, the site is almost completed.
I have determined there is a plugin conflicting with the theme, both the plugin and the theme are from the same developer, shouldn’t have this conflict.
Plugin’s name: Flickr Algum Gallery
What I need to use the Flickr is:
I am allowing authorized person upload photos for the tournament by himself/herself with their mobile app, once uploaded, the photos will show up on the website right away.
So the plugin needs to be able to show Flickr album/gallery, just that simple, I tried other plugins, this is the one that is picked. if anyone has better recommendation, kindly let me know.
Thank you.
Forum: Fixing WordPress
In reply to: Where to find the code that changed the cssForum: Fixing WordPress
In reply to: Where to find the code that changed the cssthere are quite a few css files: one of them is media-responsive.css
In this css I see:
@media only screen and (min-width: 480px) and (max-width: 600px) {.logo a{ font-size:35px; }
.head-contact-info li { display: inline-block; }
.enigma_project_section .caroufredsel_wrapper{ height: 450px !important; }
.enigma_client_area .caroufredsel_wrapper{ height: 300px !important; }
.enigma_project_detail_related_projet .caroufredsel_wrapper{ height: 450px !important; }
.carousel-indicators{display:none; }
}
@media only screen and (min-width: 200px) and (max-width: 480px) {
.logo a{ font-size:25px; }
.head-contact-info li { display: inline-block; }
Can you elaborate on how the final css (in my initial post) is generated?
Thank you very much.
Forum: Fixing WordPress
In reply to: where to adjust the padding of the menuThank you very much, that is the right place to set it.
Can you further tell me where is the setting for “info@AlumniGolf2018.Com 416.876.1208, 416.569.6212” in the middle top, it seems the setting from .head-contact-info was somehow overburdened.
Thanks.
Forum: Fixing WordPress
In reply to: three columns to set equal width of the 100% widthThank you kjodle
Forum: Fixing WordPress
In reply to: Where is the css generated and how to change itForum: Fixing WordPress
In reply to: three columns to set equal width of the 100% widthI did more adjustment, it looks good on my computer monitor but poor on my cell phone
Forum: Fixing WordPress
In reply to: How do I adjust the header’s width?In particular, I see with Firebug the following divs:
class=”col-md-6 col-sm-12 wl_rtl”
class=”col-md-6 col-sm-12″It looks like defining the sections, don’t know where are they generated.
Any clue is sincerely appreciated. Thanks in advance.
Forum: Fixing WordPress
In reply to: Where is the css generated and how to change itI really need to find out how this theme is dividing the header section into the current two sections, I need to add a marquee section for announcement area.
I see with Firebug the following divs:
class=”col-md-6 col-sm-12 wl_rtl”
class=”col-md-6 col-sm-12″It looks like defining the sections, don’t know where are they generated.
Any clue is sincerely appreciated. Thanks in advance.
Forum: Fixing WordPress
In reply to: Where is the css generated and how to change itThank you, how do I determine where are the functions then?
Forum: Fixing WordPress
In reply to: Where is the css generated and how to change itThank you Paul, unfortunately the setting for logo seems to be 100px in height and I don’t see the font size for it.
Where can I find out how the code is injected? I am used to the static style.css, really need to catch up with dynamic css
Thanks.
Forum: Fixing WordPress
In reply to: How do I adjust the header’s width?Thank you Lucas, for your finding,
with the left margin set to a fixed value (30px), it leaves me lots of space on the right.
And I want to use that area for the marquee so announcement could be released there.
As you can see from the live site, it doesn’t go there. Here is the php code for this theme:
<div class=”container” >
<div class=”row “>
<div class=”col-md-6 col-sm-12 wl_rtl”>
<div claSS=”logo”>
<p style=”color:yellow;font-size:100px;”>
冠名赞助:<font color=”#eeca76″ size=”smaller”>丹丘财富</font>
</p>
</div>
</div>
<div class=”col-md-6 col-sm-12″>
<ul class=”head-contact-info”><ul class=”head-event-info”>
<table width=100%>
</table></div>
<div class=”col-md-6 col-sm-12″>
<?php vmarquee( $setting=”1″, $group=”GROUP1″ ); ?>
</div>
</div>
<!– /Logo & Contact Info –>
</div>
</div>The marquee is now showing underneath the middle contact/event table section.
How do I align the three div so they are displayed on the same level?
Thank you very much.
By the way, <p style=”color:yellow;font-size:100px;”> doesn’t work out as expected. I need a way to adjust the font style. the <p must have been overridden by higher level css? Can I retain it? if not, what would be the easiest way? Thanks.